DefinitionTree {
    definitions: [
        Class(
            ClassDefinition {
                comments: CommentGroup {
                    comments: [],
                },
                attributes: [],
                modifiers: ClassModifierDefinitionGroup {
                    modifiers: [],
                },
                class: Span {
                    line: 1,
                    column: 1,
                    position: 0,
                },
                name: Identifier {
                    span: Span {
                        line: 1,
                        column: 7,
                        position: 6,
                    },
                    value: "Foo",
                },
                templates: None,
                extends: Some(
                    ClassDefinitionExtends {
                        extends: Span {
                            line: 1,
                            column: 11,
                            position: 10,
                        },
                        parent: TemplatedIdentifier {
                            name: Identifier {
                                span: Span {
                                    line: 1,
                                    column: 19,
                                    position: 18,
                                },
                                value: "Bar",
                            },
                            templates: None,
                        },
                    },
                ),
                implements: None,
                body: ClassDefinitionBody {
                    left_brace: Span {
                        line: 1,
                        column: 23,
                        position: 22,
                    },
                    members: [],
                    right_brace: Span {
                        line: 1,
                        column: 24,
                        position: 23,
                    },
                },
            },
        ),
    ],
    eof: Span {
        line: 1,
        column: 25,
        position: 24,
    },
}