DefinitionTree {
    definitions: [
        Constant(
            ConstantDefinition {
                comments: CommentGroup {
                    comments: [],
                },
                const: Keyword {
                    value: "const",
                    position: 0,
                },
                entries: CommaSeparated {
                    inner: [
                        ConstantDefinitionEntry {
                            name: Identifier {
                                position: 6,
                                value: "FOO",
                            },
                            equals: 10,
                            value: Literal(
                                Integer(
                                    LiteralInteger {
                                        comments: CommentGroup {
                                            comments: [],
                                        },
                                        value: "1",
                                        position: 12,
                                    },
                                ),
                            ),
                        },
                    ],
                    commas: [],
                },
                semicolon: 13,
            },
        ),
    ],
    eof: 14,
}