1enum AST_TOKEN_TYPES { 2 Boolean = 'Boolean', 3 Identifier = 'Identifier', 4 JSXIdentifier = 'JSXIdentifier', 5 JSXText = 'JSXText', 6 Keyword = 'Keyword', 7 Null = 'Null', 8 Numeric = 'Numeric', 9 Punctuator = 'Punctuator', 10 RegularExpression = 'RegularExpression', 11 String = 'String', 12 Template = 'Template', 13 14 // comment types 15 Block = 'Block', 16 Line = 'Line', 17} 18 19export { AST_TOKEN_TYPES }; 20