[
    FullOpeningTag(
        Span(
            1,
            1,
        ),
    ),
    Namespace(
        Braced(
            BracedNamespace {
                span: Span(
                    3,
                    1,
                ),
                name: None,
                body: BracedNamespaceBody {
                    start: Span(
                        3,
                        11,
                    ),
                    end: Span(
                        5,
                        1,
                    ),
                    statements: [
                        Function(
                            Function {
                                comments: CommentGroup {
                                    comments: [],
                                },
                                attributes: [],
                                function: Span(
                                    4,
                                    5,
                                ),
                                ampersand: None,
                                name: SimpleIdentifier {
                                    span: Span(
                                        4,
                                        14,
                                    ),
                                    value: "globalFunc",
                                },
                                parameters: FunctionParameterList {
                                    comments: CommentGroup {
                                        comments: [],
                                    },
                                    left_parenthesis: Span(
                                        4,
                                        24,
                                    ),
                                    parameters: CommaSeparated {
                                        inner: [],
                                        commas: [],
                                    },
                                    right_parenthesis: Span(
                                        4,
                                        25,
                                    ),
                                },
                                return_type: None,
                                body: FunctionBody {
                                    comments: CommentGroup {
                                        comments: [],
                                    },
                                    left_brace: Span(
                                        4,
                                        27,
                                    ),
                                    statements: [],
                                    right_brace: Span(
                                        4,
                                        28,
                                    ),
                                },
                            },
                        ),
                    ],
                },
            },
        ),
    ),
    Namespace(
        Braced(
            BracedNamespace {
                span: Span(
                    7,
                    1,
                ),
                name: Some(
                    SimpleIdentifier {
                        span: Span(
                            7,
                            11,
                        ),
                        value: "foo",
                    },
                ),
                body: BracedNamespaceBody {
                    start: Span(
                        7,
                        15,
                    ),
                    end: Span(
                        16,
                        1,
                    ),
                    statements: [
                        Expression {
                            expression: AssignmentOperation(
                                Assign {
                                    left: Variable(
                                        SimpleVariable(
                                            SimpleVariable {
                                                span: Span(
                                                    8,
                                                    5,
                                                ),
                                                name: "a",
                                            },
                                        ),
                                    ),
                                    equals: Span(
                                        8,
                                        8,
                                    ),
                                    right: Closure(
                                        Closure {
                                            comments: CommentGroup {
                                                comments: [],
                                            },
                                            attributes: [],
                                            static: None,
                                            function: Span(
                                                8,
                                                10,
                                            ),
                                            ampersand: None,
                                            parameters: FunctionParameterList {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_parenthesis: Span(
                                                    8,
                                                    19,
                                                ),
                                                parameters: CommaSeparated {
                                                    inner: [],
                                                    commas: [],
                                                },
                                                right_parenthesis: Span(
                                                    8,
                                                    20,
                                                ),
                                            },
                                            uses: None,
                                            return_type: None,
                                            body: FunctionBody {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_brace: Span(
                                                    8,
                                                    22,
                                                ),
                                                statements: [],
                                                right_brace: Span(
                                                    8,
                                                    23,
                                                ),
                                            },
                                        },
                                    ),
                                },
                            ),
                            ending: Semicolon(
                                Span(
                                    8,
                                    24,
                                ),
                            ),
                        },
                        Expression {
                            expression: AssignmentOperation(
                                Assign {
                                    left: Variable(
                                        SimpleVariable(
                                            SimpleVariable {
                                                span: Span(
                                                    9,
                                                    5,
                                                ),
                                                name: "b",
                                            },
                                        ),
                                    ),
                                    equals: Span(
                                        9,
                                        8,
                                    ),
                                    right: Closure(
                                        Closure {
                                            comments: CommentGroup {
                                                comments: [],
                                            },
                                            attributes: [],
                                            static: None,
                                            function: Span(
                                                9,
                                                10,
                                            ),
                                            ampersand: None,
                                            parameters: FunctionParameterList {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_parenthesis: Span(
                                                    9,
                                                    19,
                                                ),
                                                parameters: CommaSeparated {
                                                    inner: [
                                                        FunctionParameter {
                                                            comments: CommentGroup {
                                                                comments: [],
                                                            },
                                                            name: SimpleVariable {
                                                                span: Span(
                                                                    9,
                                                                    21,
                                                                ),
                                                                name: "b",
                                                            },
                                                            attributes: [],
                                                            data_type: None,
                                                            ellipsis: None,
                                                            default: None,
                                                            ampersand: Some(
                                                                Span(
                                                                    9,
                                                                    21,
                                                                ),
                                                            ),
                                                        },
                                                    ],
                                                    commas: [],
                                                },
                                                right_parenthesis: Span(
                                                    9,
                                                    23,
                                                ),
                                            },
                                            uses: None,
                                            return_type: None,
                                            body: FunctionBody {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_brace: Span(
                                                    9,
                                                    25,
                                                ),
                                                statements: [],
                                                right_brace: Span(
                                                    9,
                                                    26,
                                                ),
                                            },
                                        },
                                    ),
                                },
                            ),
                            ending: Semicolon(
                                Span(
                                    9,
                                    27,
                                ),
                            ),
                        },
                        Expression {
                            expression: AssignmentOperation(
                                Assign {
                                    left: Variable(
                                        SimpleVariable(
                                            SimpleVariable {
                                                span: Span(
                                                    10,
                                                    5,
                                                ),
                                                name: "c",
                                            },
                                        ),
                                    ),
                                    equals: Span(
                                        10,
                                        8,
                                    ),
                                    right: Closure(
                                        Closure {
                                            comments: CommentGroup {
                                                comments: [],
                                            },
                                            attributes: [],
                                            static: None,
                                            function: Span(
                                                10,
                                                10,
                                            ),
                                            ampersand: Some(
                                                Span(
                                                    10,
                                                    19,
                                                ),
                                            ),
                                            parameters: FunctionParameterList {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_parenthesis: Span(
                                                    10,
                                                    20,
                                                ),
                                                parameters: CommaSeparated {
                                                    inner: [],
                                                    commas: [],
                                                },
                                                right_parenthesis: Span(
                                                    10,
                                                    21,
                                                ),
                                            },
                                            uses: None,
                                            return_type: None,
                                            body: FunctionBody {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_brace: Span(
                                                    10,
                                                    23,
                                                ),
                                                statements: [],
                                                right_brace: Span(
                                                    10,
                                                    24,
                                                ),
                                            },
                                        },
                                    ),
                                },
                            ),
                            ending: Semicolon(
                                Span(
                                    10,
                                    25,
                                ),
                            ),
                        },
                        Expression {
                            expression: AssignmentOperation(
                                Assign {
                                    left: Variable(
                                        SimpleVariable(
                                            SimpleVariable {
                                                span: Span(
                                                    11,
                                                    5,
                                                ),
                                                name: "d",
                                            },
                                        ),
                                    ),
                                    equals: Span(
                                        11,
                                        8,
                                    ),
                                    right: Closure(
                                        Closure {
                                            comments: CommentGroup {
                                                comments: [],
                                            },
                                            attributes: [],
                                            static: None,
                                            function: Span(
                                                11,
                                                10,
                                            ),
                                            ampersand: Some(
                                                Span(
                                                    11,
                                                    19,
                                                ),
                                            ),
                                            parameters: FunctionParameterList {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_parenthesis: Span(
                                                    11,
                                                    20,
                                                ),
                                                parameters: CommaSeparated {
                                                    inner: [
                                                        FunctionParameter {
                                                            comments: CommentGroup {
                                                                comments: [],
                                                            },
                                                            name: SimpleVariable {
                                                                span: Span(
                                                                    11,
                                                                    22,
                                                                ),
                                                                name: "b",
                                                            },
                                                            attributes: [],
                                                            data_type: None,
                                                            ellipsis: None,
                                                            default: None,
                                                            ampersand: Some(
                                                                Span(
                                                                    11,
                                                                    22,
                                                                ),
                                                            ),
                                                        },
                                                    ],
                                                    commas: [],
                                                },
                                                right_parenthesis: Span(
                                                    11,
                                                    24,
                                                ),
                                            },
                                            uses: None,
                                            return_type: None,
                                            body: FunctionBody {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_brace: Span(
                                                    11,
                                                    26,
                                                ),
                                                statements: [
                                                    Return {
                                                        return: Span(
                                                            11,
                                                            28,
                                                        ),
                                                        value: Some(
                                                            Variable(
                                                                SimpleVariable(
                                                                    SimpleVariable {
                                                                        span: Span(
                                                                            11,
                                                                            35,
                                                                        ),
                                                                        name: "b",
                                                                    },
                                                                ),
                                                            ),
                                                        ),
                                                        ending: Semicolon(
                                                            Span(
                                                                11,
                                                                37,
                                                            ),
                                                        ),
                                                    },
                                                ],
                                                right_brace: Span(
                                                    11,
                                                    39,
                                                ),
                                            },
                                        },
                                    ),
                                },
                            ),
                            ending: Semicolon(
                                Span(
                                    11,
                                    40,
                                ),
                            ),
                        },
                        Expression {
                            expression: AssignmentOperation(
                                Assign {
                                    left: Variable(
                                        SimpleVariable(
                                            SimpleVariable {
                                                span: Span(
                                                    12,
                                                    5,
                                                ),
                                                name: "e",
                                            },
                                        ),
                                    ),
                                    equals: Span(
                                        12,
                                        8,
                                    ),
                                    right: ArrowFunction(
                                        ArrowFunction {
                                            comments: CommentGroup {
                                                comments: [],
                                            },
                                            static: None,
                                            ampersand: None,
                                            fn: Span(
                                                12,
                                                10,
                                            ),
                                            attributes: [],
                                            parameters: FunctionParameterList {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_parenthesis: Span(
                                                    12,
                                                    13,
                                                ),
                                                parameters: CommaSeparated {
                                                    inner: [],
                                                    commas: [],
                                                },
                                                right_parenthesis: Span(
                                                    12,
                                                    14,
                                                ),
                                            },
                                            return_type: None,
                                            double_arrow: Span(
                                                12,
                                                16,
                                            ),
                                            body: Null,
                                        },
                                    ),
                                },
                            ),
                            ending: Semicolon(
                                Span(
                                    12,
                                    23,
                                ),
                            ),
                        },
                        Expression {
                            expression: AssignmentOperation(
                                Assign {
                                    left: Variable(
                                        SimpleVariable(
                                            SimpleVariable {
                                                span: Span(
                                                    13,
                                                    5,
                                                ),
                                                name: "f",
                                            },
                                        ),
                                    ),
                                    equals: Span(
                                        13,
                                        8,
                                    ),
                                    right: ArrowFunction(
                                        ArrowFunction {
                                            comments: CommentGroup {
                                                comments: [],
                                            },
                                            static: None,
                                            ampersand: None,
                                            fn: Span(
                                                13,
                                                10,
                                            ),
                                            attributes: [],
                                            parameters: FunctionParameterList {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_parenthesis: Span(
                                                    13,
                                                    13,
                                                ),
                                                parameters: CommaSeparated {
                                                    inner: [
                                                        FunctionParameter {
                                                            comments: CommentGroup {
                                                                comments: [],
                                                            },
                                                            name: SimpleVariable {
                                                                span: Span(
                                                                    13,
                                                                    15,
                                                                ),
                                                                name: "b",
                                                            },
                                                            attributes: [],
                                                            data_type: None,
                                                            ellipsis: None,
                                                            default: None,
                                                            ampersand: Some(
                                                                Span(
                                                                    13,
                                                                    15,
                                                                ),
                                                            ),
                                                        },
                                                    ],
                                                    commas: [],
                                                },
                                                right_parenthesis: Span(
                                                    13,
                                                    17,
                                                ),
                                            },
                                            return_type: None,
                                            double_arrow: Span(
                                                13,
                                                19,
                                            ),
                                            body: Null,
                                        },
                                    ),
                                },
                            ),
                            ending: Semicolon(
                                Span(
                                    13,
                                    26,
                                ),
                            ),
                        },
                        Expression {
                            expression: AssignmentOperation(
                                Assign {
                                    left: Variable(
                                        SimpleVariable(
                                            SimpleVariable {
                                                span: Span(
                                                    14,
                                                    5,
                                                ),
                                                name: "g",
                                            },
                                        ),
                                    ),
                                    equals: Span(
                                        14,
                                        8,
                                    ),
                                    right: ArrowFunction(
                                        ArrowFunction {
                                            comments: CommentGroup {
                                                comments: [],
                                            },
                                            static: None,
                                            ampersand: Some(
                                                Span(
                                                    14,
                                                    13,
                                                ),
                                            ),
                                            fn: Span(
                                                14,
                                                10,
                                            ),
                                            attributes: [],
                                            parameters: FunctionParameterList {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_parenthesis: Span(
                                                    14,
                                                    14,
                                                ),
                                                parameters: CommaSeparated {
                                                    inner: [],
                                                    commas: [],
                                                },
                                                right_parenthesis: Span(
                                                    14,
                                                    15,
                                                ),
                                            },
                                            return_type: None,
                                            double_arrow: Span(
                                                14,
                                                17,
                                            ),
                                            body: Null,
                                        },
                                    ),
                                },
                            ),
                            ending: Semicolon(
                                Span(
                                    14,
                                    24,
                                ),
                            ),
                        },
                        Expression {
                            expression: AssignmentOperation(
                                Assign {
                                    left: Variable(
                                        SimpleVariable(
                                            SimpleVariable {
                                                span: Span(
                                                    15,
                                                    5,
                                                ),
                                                name: "h",
                                            },
                                        ),
                                    ),
                                    equals: Span(
                                        15,
                                        8,
                                    ),
                                    right: ArrowFunction(
                                        ArrowFunction {
                                            comments: CommentGroup {
                                                comments: [],
                                            },
                                            static: None,
                                            ampersand: Some(
                                                Span(
                                                    15,
                                                    13,
                                                ),
                                            ),
                                            fn: Span(
                                                15,
                                                10,
                                            ),
                                            attributes: [],
                                            parameters: FunctionParameterList {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_parenthesis: Span(
                                                    15,
                                                    14,
                                                ),
                                                parameters: CommaSeparated {
                                                    inner: [
                                                        FunctionParameter {
                                                            comments: CommentGroup {
                                                                comments: [],
                                                            },
                                                            name: SimpleVariable {
                                                                span: Span(
                                                                    15,
                                                                    16,
                                                                ),
                                                                name: "b",
                                                            },
                                                            attributes: [],
                                                            data_type: None,
                                                            ellipsis: None,
                                                            default: None,
                                                            ampersand: Some(
                                                                Span(
                                                                    15,
                                                                    16,
                                                                ),
                                                            ),
                                                        },
                                                    ],
                                                    commas: [],
                                                },
                                                right_parenthesis: Span(
                                                    15,
                                                    18,
                                                ),
                                            },
                                            return_type: None,
                                            double_arrow: Span(
                                                15,
                                                20,
                                            ),
                                            body: Variable(
                                                SimpleVariable(
                                                    SimpleVariable {
                                                        span: Span(
                                                            15,
                                                            23,
                                                        ),
                                                        name: "b",
                                                    },
                                                ),
                                            ),
                                        },
                                    ),
                                },
                            ),
                            ending: Semicolon(
                                Span(
                                    15,
                                    25,
                                ),
                            ),
                        },
                    ],
                },
            },
        ),
    ),
    Namespace(
        Braced(
            BracedNamespace {
                span: Span(
                    18,
                    1,
                ),
                name: Some(
                    SimpleIdentifier {
                        span: Span(
                            18,
                            11,
                        ),
                        value: "bar",
                    },
                ),
                body: BracedNamespaceBody {
                    start: Span(
                        18,
                        15,
                    ),
                    end: Span(
                        27,
                        1,
                    ),
                    statements: [
                        Expression {
                            expression: AssignmentOperation(
                                Assign {
                                    left: Variable(
                                        SimpleVariable(
                                            SimpleVariable {
                                                span: Span(
                                                    19,
                                                    5,
                                                ),
                                                name: "a",
                                            },
                                        ),
                                    ),
                                    equals: Span(
                                        19,
                                        8,
                                    ),
                                    right: Closure(
                                        Closure {
                                            comments: CommentGroup {
                                                comments: [],
                                            },
                                            attributes: [],
                                            static: Some(
                                                Span(
                                                    19,
                                                    10,
                                                ),
                                            ),
                                            function: Span(
                                                19,
                                                17,
                                            ),
                                            ampersand: None,
                                            parameters: FunctionParameterList {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_parenthesis: Span(
                                                    19,
                                                    26,
                                                ),
                                                parameters: CommaSeparated {
                                                    inner: [],
                                                    commas: [],
                                                },
                                                right_parenthesis: Span(
                                                    19,
                                                    27,
                                                ),
                                            },
                                            uses: None,
                                            return_type: None,
                                            body: FunctionBody {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_brace: Span(
                                                    19,
                                                    29,
                                                ),
                                                statements: [],
                                                right_brace: Span(
                                                    19,
                                                    30,
                                                ),
                                            },
                                        },
                                    ),
                                },
                            ),
                            ending: Semicolon(
                                Span(
                                    19,
                                    31,
                                ),
                            ),
                        },
                        Expression {
                            expression: AssignmentOperation(
                                Assign {
                                    left: Variable(
                                        SimpleVariable(
                                            SimpleVariable {
                                                span: Span(
                                                    20,
                                                    5,
                                                ),
                                                name: "b",
                                            },
                                        ),
                                    ),
                                    equals: Span(
                                        20,
                                        8,
                                    ),
                                    right: Closure(
                                        Closure {
                                            comments: CommentGroup {
                                                comments: [],
                                            },
                                            attributes: [],
                                            static: Some(
                                                Span(
                                                    20,
                                                    10,
                                                ),
                                            ),
                                            function: Span(
                                                20,
                                                17,
                                            ),
                                            ampersand: None,
                                            parameters: FunctionParameterList {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_parenthesis: Span(
                                                    20,
                                                    26,
                                                ),
                                                parameters: CommaSeparated {
                                                    inner: [
                                                        FunctionParameter {
                                                            comments: CommentGroup {
                                                                comments: [],
                                                            },
                                                            name: SimpleVariable {
                                                                span: Span(
                                                                    20,
                                                                    28,
                                                                ),
                                                                name: "b",
                                                            },
                                                            attributes: [],
                                                            data_type: None,
                                                            ellipsis: None,
                                                            default: None,
                                                            ampersand: Some(
                                                                Span(
                                                                    20,
                                                                    28,
                                                                ),
                                                            ),
                                                        },
                                                    ],
                                                    commas: [],
                                                },
                                                right_parenthesis: Span(
                                                    20,
                                                    30,
                                                ),
                                            },
                                            uses: None,
                                            return_type: None,
                                            body: FunctionBody {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_brace: Span(
                                                    20,
                                                    32,
                                                ),
                                                statements: [],
                                                right_brace: Span(
                                                    20,
                                                    33,
                                                ),
                                            },
                                        },
                                    ),
                                },
                            ),
                            ending: Semicolon(
                                Span(
                                    20,
                                    34,
                                ),
                            ),
                        },
                        Expression {
                            expression: AssignmentOperation(
                                Assign {
                                    left: Variable(
                                        SimpleVariable(
                                            SimpleVariable {
                                                span: Span(
                                                    21,
                                                    5,
                                                ),
                                                name: "c",
                                            },
                                        ),
                                    ),
                                    equals: Span(
                                        21,
                                        8,
                                    ),
                                    right: Closure(
                                        Closure {
                                            comments: CommentGroup {
                                                comments: [],
                                            },
                                            attributes: [],
                                            static: Some(
                                                Span(
                                                    21,
                                                    10,
                                                ),
                                            ),
                                            function: Span(
                                                21,
                                                17,
                                            ),
                                            ampersand: Some(
                                                Span(
                                                    21,
                                                    26,
                                                ),
                                            ),
                                            parameters: FunctionParameterList {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_parenthesis: Span(
                                                    21,
                                                    27,
                                                ),
                                                parameters: CommaSeparated {
                                                    inner: [],
                                                    commas: [],
                                                },
                                                right_parenthesis: Span(
                                                    21,
                                                    28,
                                                ),
                                            },
                                            uses: None,
                                            return_type: None,
                                            body: FunctionBody {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_brace: Span(
                                                    21,
                                                    30,
                                                ),
                                                statements: [],
                                                right_brace: Span(
                                                    21,
                                                    31,
                                                ),
                                            },
                                        },
                                    ),
                                },
                            ),
                            ending: Semicolon(
                                Span(
                                    21,
                                    32,
                                ),
                            ),
                        },
                        Expression {
                            expression: AssignmentOperation(
                                Assign {
                                    left: Variable(
                                        SimpleVariable(
                                            SimpleVariable {
                                                span: Span(
                                                    22,
                                                    5,
                                                ),
                                                name: "d",
                                            },
                                        ),
                                    ),
                                    equals: Span(
                                        22,
                                        8,
                                    ),
                                    right: Closure(
                                        Closure {
                                            comments: CommentGroup {
                                                comments: [],
                                            },
                                            attributes: [],
                                            static: Some(
                                                Span(
                                                    22,
                                                    10,
                                                ),
                                            ),
                                            function: Span(
                                                22,
                                                17,
                                            ),
                                            ampersand: Some(
                                                Span(
                                                    22,
                                                    26,
                                                ),
                                            ),
                                            parameters: FunctionParameterList {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_parenthesis: Span(
                                                    22,
                                                    27,
                                                ),
                                                parameters: CommaSeparated {
                                                    inner: [
                                                        FunctionParameter {
                                                            comments: CommentGroup {
                                                                comments: [],
                                                            },
                                                            name: SimpleVariable {
                                                                span: Span(
                                                                    22,
                                                                    29,
                                                                ),
                                                                name: "b",
                                                            },
                                                            attributes: [],
                                                            data_type: None,
                                                            ellipsis: None,
                                                            default: None,
                                                            ampersand: Some(
                                                                Span(
                                                                    22,
                                                                    29,
                                                                ),
                                                            ),
                                                        },
                                                    ],
                                                    commas: [],
                                                },
                                                right_parenthesis: Span(
                                                    22,
                                                    31,
                                                ),
                                            },
                                            uses: None,
                                            return_type: None,
                                            body: FunctionBody {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_brace: Span(
                                                    22,
                                                    33,
                                                ),
                                                statements: [
                                                    Return {
                                                        return: Span(
                                                            22,
                                                            35,
                                                        ),
                                                        value: Some(
                                                            Variable(
                                                                SimpleVariable(
                                                                    SimpleVariable {
                                                                        span: Span(
                                                                            22,
                                                                            42,
                                                                        ),
                                                                        name: "b",
                                                                    },
                                                                ),
                                                            ),
                                                        ),
                                                        ending: Semicolon(
                                                            Span(
                                                                22,
                                                                44,
                                                            ),
                                                        ),
                                                    },
                                                ],
                                                right_brace: Span(
                                                    22,
                                                    46,
                                                ),
                                            },
                                        },
                                    ),
                                },
                            ),
                            ending: Semicolon(
                                Span(
                                    22,
                                    47,
                                ),
                            ),
                        },
                        Expression {
                            expression: AssignmentOperation(
                                Assign {
                                    left: Variable(
                                        SimpleVariable(
                                            SimpleVariable {
                                                span: Span(
                                                    23,
                                                    5,
                                                ),
                                                name: "e",
                                            },
                                        ),
                                    ),
                                    equals: Span(
                                        23,
                                        8,
                                    ),
                                    right: ArrowFunction(
                                        ArrowFunction {
                                            comments: CommentGroup {
                                                comments: [],
                                            },
                                            static: Some(
                                                Span(
                                                    23,
                                                    10,
                                                ),
                                            ),
                                            ampersand: None,
                                            fn: Span(
                                                23,
                                                17,
                                            ),
                                            attributes: [],
                                            parameters: FunctionParameterList {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_parenthesis: Span(
                                                    23,
                                                    20,
                                                ),
                                                parameters: CommaSeparated {
                                                    inner: [],
                                                    commas: [],
                                                },
                                                right_parenthesis: Span(
                                                    23,
                                                    21,
                                                ),
                                            },
                                            return_type: None,
                                            double_arrow: Span(
                                                23,
                                                23,
                                            ),
                                            body: Null,
                                        },
                                    ),
                                },
                            ),
                            ending: Semicolon(
                                Span(
                                    23,
                                    30,
                                ),
                            ),
                        },
                        Expression {
                            expression: AssignmentOperation(
                                Assign {
                                    left: Variable(
                                        SimpleVariable(
                                            SimpleVariable {
                                                span: Span(
                                                    24,
                                                    5,
                                                ),
                                                name: "f",
                                            },
                                        ),
                                    ),
                                    equals: Span(
                                        24,
                                        8,
                                    ),
                                    right: ArrowFunction(
                                        ArrowFunction {
                                            comments: CommentGroup {
                                                comments: [],
                                            },
                                            static: Some(
                                                Span(
                                                    24,
                                                    10,
                                                ),
                                            ),
                                            ampersand: None,
                                            fn: Span(
                                                24,
                                                17,
                                            ),
                                            attributes: [],
                                            parameters: FunctionParameterList {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_parenthesis: Span(
                                                    24,
                                                    20,
                                                ),
                                                parameters: CommaSeparated {
                                                    inner: [
                                                        FunctionParameter {
                                                            comments: CommentGroup {
                                                                comments: [],
                                                            },
                                                            name: SimpleVariable {
                                                                span: Span(
                                                                    24,
                                                                    22,
                                                                ),
                                                                name: "b",
                                                            },
                                                            attributes: [],
                                                            data_type: None,
                                                            ellipsis: None,
                                                            default: None,
                                                            ampersand: Some(
                                                                Span(
                                                                    24,
                                                                    22,
                                                                ),
                                                            ),
                                                        },
                                                    ],
                                                    commas: [],
                                                },
                                                right_parenthesis: Span(
                                                    24,
                                                    24,
                                                ),
                                            },
                                            return_type: None,
                                            double_arrow: Span(
                                                24,
                                                26,
                                            ),
                                            body: Null,
                                        },
                                    ),
                                },
                            ),
                            ending: Semicolon(
                                Span(
                                    24,
                                    33,
                                ),
                            ),
                        },
                        Expression {
                            expression: AssignmentOperation(
                                Assign {
                                    left: Variable(
                                        SimpleVariable(
                                            SimpleVariable {
                                                span: Span(
                                                    25,
                                                    5,
                                                ),
                                                name: "g",
                                            },
                                        ),
                                    ),
                                    equals: Span(
                                        25,
                                        8,
                                    ),
                                    right: ArrowFunction(
                                        ArrowFunction {
                                            comments: CommentGroup {
                                                comments: [],
                                            },
                                            static: Some(
                                                Span(
                                                    25,
                                                    10,
                                                ),
                                            ),
                                            ampersand: Some(
                                                Span(
                                                    25,
                                                    20,
                                                ),
                                            ),
                                            fn: Span(
                                                25,
                                                17,
                                            ),
                                            attributes: [],
                                            parameters: FunctionParameterList {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_parenthesis: Span(
                                                    25,
                                                    21,
                                                ),
                                                parameters: CommaSeparated {
                                                    inner: [],
                                                    commas: [],
                                                },
                                                right_parenthesis: Span(
                                                    25,
                                                    22,
                                                ),
                                            },
                                            return_type: None,
                                            double_arrow: Span(
                                                25,
                                                24,
                                            ),
                                            body: Null,
                                        },
                                    ),
                                },
                            ),
                            ending: Semicolon(
                                Span(
                                    25,
                                    31,
                                ),
                            ),
                        },
                        Expression {
                            expression: AssignmentOperation(
                                Assign {
                                    left: Variable(
                                        SimpleVariable(
                                            SimpleVariable {
                                                span: Span(
                                                    26,
                                                    5,
                                                ),
                                                name: "h",
                                            },
                                        ),
                                    ),
                                    equals: Span(
                                        26,
                                        8,
                                    ),
                                    right: ArrowFunction(
                                        ArrowFunction {
                                            comments: CommentGroup {
                                                comments: [],
                                            },
                                            static: Some(
                                                Span(
                                                    26,
                                                    10,
                                                ),
                                            ),
                                            ampersand: Some(
                                                Span(
                                                    26,
                                                    20,
                                                ),
                                            ),
                                            fn: Span(
                                                26,
                                                17,
                                            ),
                                            attributes: [],
                                            parameters: FunctionParameterList {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                left_parenthesis: Span(
                                                    26,
                                                    21,
                                                ),
                                                parameters: CommaSeparated {
                                                    inner: [
                                                        FunctionParameter {
                                                            comments: CommentGroup {
                                                                comments: [],
                                                            },
                                                            name: SimpleVariable {
                                                                span: Span(
                                                                    26,
                                                                    23,
                                                                ),
                                                                name: "b",
                                                            },
                                                            attributes: [],
                                                            data_type: None,
                                                            ellipsis: None,
                                                            default: None,
                                                            ampersand: Some(
                                                                Span(
                                                                    26,
                                                                    23,
                                                                ),
                                                            ),
                                                        },
                                                    ],
                                                    commas: [],
                                                },
                                                right_parenthesis: Span(
                                                    26,
                                                    25,
                                                ),
                                            },
                                            return_type: None,
                                            double_arrow: Span(
                                                26,
                                                27,
                                            ),
                                            body: Variable(
                                                SimpleVariable(
                                                    SimpleVariable {
                                                        span: Span(
                                                            26,
                                                            30,
                                                        ),
                                                        name: "b",
                                                    },
                                                ),
                                            ),
                                        },
                                    ),
                                },
                            ),
                            ending: Semicolon(
                                Span(
                                    26,
                                    32,
                                ),
                            ),
                        },
                    ],
                },
            },
        ),
    ),
    Namespace(
        Braced(
            BracedNamespace {
                span: Span(
                    29,
                    1,
                ),
                name: Some(
                    SimpleIdentifier {
                        span: Span(
                            29,
                            11,
                        ),
                        value: "baz",
                    },
                ),
                body: BracedNamespaceBody {
                    start: Span(
                        29,
                        15,
                    ),
                    end: Span(
                        33,
                        1,
                    ),
                    statements: [
                        Function(
                            Function {
                                comments: CommentGroup {
                                    comments: [],
                                },
                                attributes: [],
                                function: Span(
                                    30,
                                    5,
                                ),
                                ampersand: None,
                                name: SimpleIdentifier {
                                    span: Span(
                                        30,
                                        14,
                                    ),
                                    value: "a",
                                },
                                parameters: FunctionParameterList {
                                    comments: CommentGroup {
                                        comments: [],
                                    },
                                    left_parenthesis: Span(
                                        30,
                                        15,
                                    ),
                                    parameters: CommaSeparated {
                                        inner: [
                                            FunctionParameter {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                name: SimpleVariable {
                                                    span: Span(
                                                        30,
                                                        17,
                                                    ),
                                                    name: "b",
                                                },
                                                attributes: [],
                                                data_type: None,
                                                ellipsis: None,
                                                default: None,
                                                ampersand: Some(
                                                    Span(
                                                        30,
                                                        17,
                                                    ),
                                                ),
                                            },
                                        ],
                                        commas: [],
                                    },
                                    right_parenthesis: Span(
                                        30,
                                        19,
                                    ),
                                },
                                return_type: None,
                                body: FunctionBody {
                                    comments: CommentGroup {
                                        comments: [],
                                    },
                                    left_brace: Span(
                                        30,
                                        21,
                                    ),
                                    statements: [],
                                    right_brace: Span(
                                        30,
                                        22,
                                    ),
                                },
                            },
                        ),
                        Function(
                            Function {
                                comments: CommentGroup {
                                    comments: [],
                                },
                                attributes: [],
                                function: Span(
                                    31,
                                    5,
                                ),
                                ampersand: Some(
                                    Span(
                                        31,
                                        14,
                                    ),
                                ),
                                name: SimpleIdentifier {
                                    span: Span(
                                        31,
                                        15,
                                    ),
                                    value: "b",
                                },
                                parameters: FunctionParameterList {
                                    comments: CommentGroup {
                                        comments: [],
                                    },
                                    left_parenthesis: Span(
                                        31,
                                        16,
                                    ),
                                    parameters: CommaSeparated {
                                        inner: [
                                            FunctionParameter {
                                                comments: CommentGroup {
                                                    comments: [],
                                                },
                                                name: SimpleVariable {
                                                    span: Span(
                                                        31,
                                                        17,
                                                    ),
                                                    name: "b",
                                                },
                                                attributes: [],
                                                data_type: None,
                                                ellipsis: None,
                                                default: None,
                                                ampersand: None,
                                            },
                                        ],
                                        commas: [],
                                    },
                                    right_parenthesis: Span(
                                        31,
                                        19,
                                    ),
                                },
                                return_type: None,
                                body: FunctionBody {
                                    comments: CommentGroup {
                                        comments: [],
                                    },
                                    left_brace: Span(
                                        31,
                                        21,
                                    ),
                                    statements: [
                                        Return {
                                            return: Span(
                                                31,
                                                23,
                                            ),
                                            value: Some(
                                                Variable(
                                                    SimpleVariable(
                                                        SimpleVariable {
                                                            span: Span(
                                                                31,
                                                                30,
                                                            ),
                                                            name: "b",
                                                        },
                                                    ),
                                                ),
                                            ),
                                            ending: Semicolon(
                                                Span(
                                                    31,
                                                    32,
                                                ),
                                            ),
                                        },
                                    ],
                                    right_brace: Span(
                                        31,
                                        34,
                                    ),
                                },
                            },
                        ),
                        Function(
                            Function {
                                comments: CommentGroup {
                                    comments: [],
                                },
                                attributes: [],
                                function: Span(
                                    32,
                                    5,
                                ),
                                ampersand: Some(
                                    Span(
                                        32,
                                        14,
                                    ),
                                ),
                                name: SimpleIdentifier {
                                    span: Span(
                                        32,
                                        15,
                                    ),
                                    value: "c",
                                },
                                parameters: FunctionParameterList {
                                    comments: CommentGroup {
                                        comments: [],
                                    },
                                    left_parenthesis: Span(
                                        32,
                                        16,
                                    ),
                                    parameters: CommaSeparated {
                                        inner: [],
                                        commas: [],
                                    },
                                    right_parenthesis: Span(
                                        32,
                                        17,
                                    ),
                                },
                                return_type: None,
                                body: FunctionBody {
                                    comments: CommentGroup {
                                        comments: [],
                                    },
                                    left_brace: Span(
                                        32,
                                        19,
                                    ),
                                    statements: [
                                        Return {
                                            return: Span(
                                                32,
                                                21,
                                            ),
                                            value: Some(
                                                Variable(
                                                    SimpleVariable(
                                                        SimpleVariable {
                                                            span: Span(
                                                                32,
                                                                28,
                                                            ),
                                                            name: "b",
                                                        },
                                                    ),
                                                ),
                                            ),
                                            ending: Semicolon(
                                                Span(
                                                    32,
                                                    30,
                                                ),
                                            ),
                                        },
                                    ],
                                    right_brace: Span(
                                        32,
                                        32,
                                    ),
                                },
                            },
                        ),
                    ],
                },
            },
        ),
    ),
]
