DefinitionTree {
    definitions: [
        Function(
            FunctionDefinition {
                comments: CommentGroup {
                    comments: [],
                },
                attributes: [],
                function: Span {
                    line: 1,
                    column: 1,
                    position: 0,
                },
                name: Identifier {
                    span: Span {
                        line: 1,
                        column: 10,
                        position: 9,
                    },
                    value: "q",
                },
                templates: None,
                parameters: FunctionLikeParameterListDefinition {
                    comments: CommentGroup {
                        comments: [],
                    },
                    left_parenthesis: Span {
                        line: 1,
                        column: 11,
                        position: 10,
                    },
                    parameters: CommaSeparated {
                        inner: [],
                        commas: [],
                    },
                    right_parenthesis: Span {
                        line: 1,
                        column: 12,
                        position: 11,
                    },
                },
                return_type: FunctionLikeReturnTypeDefinition {
                    colon: Span {
                        line: 1,
                        column: 13,
                        position: 12,
                    },
                    type_definition: Void(
                        Span {
                            line: 1,
                            column: 15,
                            position: 14,
                        },
                    ),
                },
                body: BlockStatement {
                    comments: CommentGroup {
                        comments: [],
                    },
                    left_brace: Span {
                        line: 1,
                        column: 20,
                        position: 19,
                    },
                    statements: [
                        Expression(
                            ExpressionStatement {
                                comments: CommentGroup {
                                    comments: [],
                                },
                                expression: AssignmentOperation(
                                    Assignment {
                                        comments: CommentGroup {
                                            comments: [],
                                        },
                                        left: Variable(
                                            Variable {
                                                span: Span {
                                                    line: 2,
                                                    column: 5,
                                                    position: 25,
                                                },
                                                name: "$a",
                                            },
                                        ),
                                        equals: Span {
                                            line: 2,
                                            column: 8,
                                            position: 28,
                                        },
                                        right: ClassOperation(
                                            Initialization {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                new: Span {
                                                    line: 2,
                                                    column: 10,
                                                    position: 30,
                                                },
                                                class: Identifier {
                                                    span: Span {
                                                        line: 2,
                                                        column: 14,
                                                        position: 34,
                                                    },
                                                    value: "Foo",
                                                },
                                                generics: None,
                                                arguments: ArgumentListExpression {
                                                    comments: CommentGroup {
                                                        comments: [],
                                                    },
                                                    left_parenthesis: Span {
                                                        line: 2,
                                                        column: 17,
                                                        position: 37,
                                                    },
                                                    arguments: CommaSeparated {
                                                        inner: [],
                                                        commas: [],
                                                    },
                                                    right_parenthesis: Span {
                                                        line: 2,
                                                        column: 18,
                                                        position: 38,
                                                    },
                                                },
                                            },
                                        ),
                                    },
                                ),
                                semicolon: Span {
                                    line: 2,
                                    column: 19,
                                    position: 39,
                                },
                            },
                        ),
                        Expression(
                            ExpressionStatement {
                                comments: CommentGroup {
                                    comments: [],
                                },
                                expression: AssignmentOperation(
                                    Assignment {
                                        comments: CommentGroup {
                                            comments: [],
                                        },
                                        left: Variable(
                                            Variable {
                                                span: Span {
                                                    line: 3,
                                                    column: 5,
                                                    position: 45,
                                                },
                                                name: "$b",
                                            },
                                        ),
                                        equals: Span {
                                            line: 3,
                                            column: 8,
                                            position: 48,
                                        },
                                        right: ArithmeticOperation(
                                            Positive {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                plus: Span {
                                                    line: 3,
                                                    column: 10,
                                                    position: 50,
                                                },
                                                right: Literal(
                                                    Integer(
                                                        LiteralInteger {
                                                            comments: CommentGroup {
                                                                comments: [],
                                                            },
                                                            value: "1",
                                                            span: Span {
                                                                line: 3,
                                                                column: 11,
                                                                position: 51,
                                                            },
                                                        },
                                                    ),
                                                ),
                                            },
                                        ),
                                    },
                                ),
                                semicolon: Span {
                                    line: 3,
                                    column: 12,
                                    position: 52,
                                },
                            },
                        ),
                        Expression(
                            ExpressionStatement {
                                comments: CommentGroup {
                                    comments: [],
                                },
                                expression: AssignmentOperation(
                                    Assignment {
                                        comments: CommentGroup {
                                            comments: [],
                                        },
                                        left: Variable(
                                            Variable {
                                                span: Span {
                                                    line: 4,
                                                    column: 5,
                                                    position: 58,
                                                },
                                                name: "$c",
                                            },
                                        ),
                                        equals: Span {
                                            line: 4,
                                            column: 8,
                                            position: 61,
                                        },
                                        right: BitwiseOperation(
                                            Not {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                not: Span {
                                                    line: 4,
                                                    column: 10,
                                                    position: 63,
                                                },
                                                right: Literal(
                                                    Integer(
                                                        LiteralInteger {
                                                            comments: CommentGroup {
                                                                comments: [],
                                                            },
                                                            value: "2",
                                                            span: Span {
                                                                line: 4,
                                                                column: 11,
                                                                position: 64,
                                                            },
                                                        },
                                                    ),
                                                ),
                                            },
                                        ),
                                    },
                                ),
                                semicolon: Span {
                                    line: 4,
                                    column: 12,
                                    position: 65,
                                },
                            },
                        ),
                        Expression(
                            ExpressionStatement {
                                comments: CommentGroup {
                                    comments: [],
                                },
                                expression: AssignmentOperation(
                                    Assignment {
                                        comments: CommentGroup {
                                            comments: [],
                                        },
                                        left: Variable(
                                            Variable {
                                                span: Span {
                                                    line: 5,
                                                    column: 5,
                                                    position: 71,
                                                },
                                                name: "$d",
                                            },
                                        ),
                                        equals: Span {
                                            line: 5,
                                            column: 8,
                                            position: 74,
                                        },
                                        right: ArithmeticOperation(
                                            PreDecrement {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                decrement: Span {
                                                    line: 5,
                                                    column: 10,
                                                    position: 76,
                                                },
                                                right: Variable(
                                                    Variable {
                                                        span: Span {
                                                            line: 5,
                                                            column: 12,
                                                            position: 78,
                                                        },
                                                        name: "$b",
                                                    },
                                                ),
                                            },
                                        ),
                                    },
                                ),
                                semicolon: Span {
                                    line: 5,
                                    column: 14,
                                    position: 80,
                                },
                            },
                        ),
                        Expression(
                            ExpressionStatement {
                                comments: CommentGroup {
                                    comments: [],
                                },
                                expression: AssignmentOperation(
                                    Assignment {
                                        comments: CommentGroup {
                                            comments: [],
                                        },
                                        left: Variable(
                                            Variable {
                                                span: Span {
                                                    line: 6,
                                                    column: 5,
                                                    position: 86,
                                                },
                                                name: "$e",
                                            },
                                        ),
                                        equals: Span {
                                            line: 6,
                                            column: 8,
                                            position: 89,
                                        },
                                        right: ArithmeticOperation(
                                            PreIncrement {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                increment: Span {
                                                    line: 6,
                                                    column: 10,
                                                    position: 91,
                                                },
                                                right: Variable(
                                                    Variable {
                                                        span: Span {
                                                            line: 6,
                                                            column: 12,
                                                            position: 93,
                                                        },
                                                        name: "$d",
                                                    },
                                                ),
                                            },
                                        ),
                                    },
                                ),
                                semicolon: Span {
                                    line: 6,
                                    column: 14,
                                    position: 95,
                                },
                            },
                        ),
                    ],
                    right_brace: Span {
                        line: 7,
                        column: 1,
                        position: 97,
                    },
                },
            },
        ),
    ],
    eof: Span {
        line: 8,
        column: 1,
        position: 99,
    },
}