2019-05-08 22:23:57 +00:00
"use strict" ;
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
2020-07-14 08:45:19 +00:00
exports . Parser = void 0 ;
2019-05-08 22:23:57 +00:00
const dom = require ( "dts-dom" ) ;
2022-11-17 22:14:15 +00:00
/ * *
* Note that this Parser only works with jsdoc 3.6 . 6 output .
* Downgrading , or upgrading jsdoc will cause it to break .
* /
2019-05-08 22:23:57 +00:00
const regexEndLine = /^(.*)\r\n|\n|\r/gm ;
class Parser {
constructor ( docs ) {
this . topLevel = [ ] ;
this . objects = { } ;
this . namespaces = { } ;
// parse doclets and create corresponding dom objects
this . parseObjects ( docs ) ;
this . resolveObjects ( docs ) ;
// removes members inherited from classes
// possibly could be avoided if mixins were defined as such before JSDoc parses them and then we could globally remove all inherited (not
2019-11-22 17:00:22 +00:00
// overridden) members globally from the parsed DB
2019-05-08 22:23:57 +00:00
this . resolveInheritance ( docs ) ;
this . resolveParents ( docs ) ;
// add integer alias
this . topLevel . push ( dom . create . alias ( 'integer' , dom . type . number ) ) ;
// add declare module
const phaserPkgModuleDOM = dom . create . module ( 'phaser' ) ;
phaserPkgModuleDOM . members . push ( dom . create . exportEquals ( 'Phaser' ) ) ;
this . topLevel . push ( phaserPkgModuleDOM ) ;
}
emit ( ) {
let ignored = [ ] ;
2020-01-13 13:29:15 +00:00
let result = '/// <reference types="./matter" />\n\n' ;
result = result . concat ( this . topLevel . reduce ( ( out , obj ) => {
2019-05-08 22:23:57 +00:00
return out + dom . emit ( obj ) ;
2020-01-13 13:29:15 +00:00
} , '' ) ) ;
2019-05-09 16:13:46 +00:00
if ( ignored . length > 0 ) {
console . log ( 'ignored top level properties:' ) ;
console . log ( ignored ) ;
}
2019-05-08 22:23:57 +00:00
return result ;
}
parseObjects ( docs ) {
2020-11-23 11:31:36 +00:00
console . log ( '------------------------------------------------------------------' ) ;
2020-11-23 10:19:46 +00:00
console . log ( 'Parse Objects' ) ;
2020-11-23 11:31:36 +00:00
console . log ( '------------------------------------------------------------------' ) ;
2019-05-08 22:23:57 +00:00
for ( let i = 0 ; i < docs . length ; i ++ ) {
let doclet = docs [ i ] ;
switch ( doclet . longname ) {
case 'Phaser.GameObjects.Components.Alpha' :
2020-01-13 13:29:15 +00:00
case 'Phaser.GameObjects.Components.AlphaSingle' :
2019-05-08 22:23:57 +00:00
case 'Phaser.GameObjects.Components.Animation' :
case 'Phaser.GameObjects.Components.BlendMode' :
case 'Phaser.GameObjects.Components.ComputedSize' :
case 'Phaser.GameObjects.Components.Crop' :
case 'Phaser.GameObjects.Components.Depth' :
case 'Phaser.GameObjects.Components.Flip' :
2021-10-18 16:59:31 +00:00
case 'Phaser.GameObjects.Components.FX' :
2019-05-08 22:23:57 +00:00
case 'Phaser.GameObjects.Components.GetBounds' :
case 'Phaser.GameObjects.Components.Mask' :
case 'Phaser.GameObjects.Components.Origin' :
2019-05-09 14:33:26 +00:00
case 'Phaser.GameObjects.Components.PathFollower' :
2019-05-08 22:23:57 +00:00
case 'Phaser.GameObjects.Components.Pipeline' :
case 'Phaser.GameObjects.Components.ScrollFactor' :
case 'Phaser.GameObjects.Components.Size' :
case 'Phaser.GameObjects.Components.Texture' :
case 'Phaser.GameObjects.Components.TextureCrop' :
case 'Phaser.GameObjects.Components.Tint' :
case 'Phaser.GameObjects.Components.ToJSON' :
case 'Phaser.GameObjects.Components.Transform' :
case 'Phaser.GameObjects.Components.Visible' :
doclet . kind = 'mixin' ;
break ;
2019-05-09 16:13:46 +00:00
// Because, sod you TypeScript
case 'Phaser.BlendModes' :
case 'Phaser.ScaleModes' :
case 'Phaser.Physics.Impact.TYPE' :
case 'Phaser.Physics.Impact.COLLIDES' :
case 'Phaser.Scale.Center' :
case 'Phaser.Scale.Orientation' :
case 'Phaser.Scale.ScaleModes' :
case 'Phaser.Scale.Zoom' :
case 'Phaser.Textures.FilterMode' :
2020-11-23 15:33:51 +00:00
case 'Phaser.Tilemaps.Orientation' :
2022-09-20 21:23:23 +00:00
case 'Phaser.Tweens.States' :
2019-05-10 15:05:20 +00:00
// console.log('Forcing enum for ' + doclet.longname);
2019-05-09 16:13:46 +00:00
doclet . kind = 'member' ;
doclet . isEnum = true ;
break ;
2019-05-08 22:23:57 +00:00
}
2019-05-09 16:13:46 +00:00
if ( ( doclet . longname . indexOf ( 'Phaser.Physics.Arcade.Components.' ) == 0 || doclet . longname . indexOf ( 'Phaser.Physics.Impact.Components.' ) == 0 || doclet . longname . indexOf ( 'Phaser.Physics.Matter.Components.' ) == 0 ) && doclet . longname . indexOf ( '#' ) == - 1 ) {
2019-05-08 22:23:57 +00:00
doclet . kind = 'mixin' ;
2019-05-09 16:13:46 +00:00
}
2020-11-23 11:31:36 +00:00
// console.log(`Name: ${doclet.longname} - Kind: ${doclet.kind}`);
2019-05-08 22:23:57 +00:00
let obj ;
let container = this . objects ;
switch ( doclet . kind ) {
case 'namespace' :
obj = this . createNamespace ( doclet ) ;
container = this . namespaces ;
break ;
case 'class' :
obj = this . createClass ( doclet ) ;
break ;
case 'mixin' :
obj = this . createInterface ( doclet ) ;
break ;
case 'member' :
if ( doclet . isEnum === true ) {
obj = this . createEnum ( doclet ) ;
break ;
}
case 'constant' :
obj = this . createMember ( doclet ) ;
break ;
case 'function' :
obj = this . createFunction ( doclet ) ;
break ;
case 'typedef' :
obj = this . createTypedef ( doclet ) ;
break ;
case 'event' :
obj = this . createEvent ( doclet ) ;
break ;
default :
console . log ( 'Ignored doclet kind: ' + doclet . kind ) ;
break ;
}
if ( obj ) {
if ( container [ doclet . longname ] ) {
console . log ( 'Warning: ignoring duplicate doc name: ' + doclet . longname ) ;
2022-11-10 16:19:30 +00:00
console . log ( 'Meta: ' , doclet . meta ) ;
2019-05-08 22:23:57 +00:00
docs . splice ( i -- , 1 ) ;
continue ;
}
container [ doclet . longname ] = obj ;
if ( doclet . description ) {
let otherDocs = obj . jsDocComment || '' ;
obj . jsDocComment = doclet . description . replace ( regexEndLine , '$1\n' ) + otherDocs ;
}
}
}
}
resolveObjects ( docs ) {
2020-11-23 11:31:36 +00:00
console . log ( '------------------------------------------------------------------' ) ;
console . log ( 'Resolve Objects' ) ;
console . log ( '------------------------------------------------------------------' ) ;
2019-05-08 22:23:57 +00:00
let allTypes = new Set ( ) ;
for ( let doclet of docs ) {
2020-11-23 11:31:36 +00:00
let obj = ( doclet . kind === 'namespace' ) ? this . namespaces [ doclet . longname ] : this . objects [ doclet . longname ] ;
2019-05-08 22:23:57 +00:00
if ( ! obj ) {
2020-11-23 11:31:36 +00:00
console . log ( ` ${ doclet . longname } - Kind: ${ doclet . kind } ` ) ;
console . log ( ` Warning: Didn't find object ` ) ;
2019-05-08 22:23:57 +00:00
continue ;
}
if ( ! doclet . memberof ) {
this . topLevel . push ( obj ) ;
}
else {
let isNamespaceMember = doclet . kind === 'class' || doclet . kind === 'typedef' || doclet . kind == 'namespace' || doclet . isEnum ;
let parent = isNamespaceMember ? this . namespaces [ doclet . memberof ] : ( this . objects [ doclet . memberof ] || this . namespaces [ doclet . memberof ] ) ;
if ( ! parent ) {
2020-11-23 11:31:36 +00:00
console . log ( ` ${ doclet . longname } - Kind: ${ doclet . kind } ` ) ;
console . log ( ` PARENT WARNING: ${ doclet . longname } in ${ doclet . meta . filename } @ ${ doclet . meta . lineno } has parent ' ${ doclet . memberof } ' that is not defined. ` ) ;
2019-05-08 22:23:57 +00:00
}
if ( parent . members ) {
parent . members . push ( obj ) ;
}
else {
2020-11-23 11:31:36 +00:00
console . log ( ` ${ doclet . longname } - Kind: ${ doclet . kind } ` ) ;
console . log ( 'Could not find members array' ) ;
2019-05-08 22:23:57 +00:00
console . log ( parent ) ;
}
obj . _parent = parent ;
2020-11-23 11:31:36 +00:00
// class / interface members have methods, not functions
if ( ( parent . kind === 'class' || parent . kind === 'interface' ) && obj . kind === 'function' ) {
2019-05-08 22:23:57 +00:00
obj . kind = 'method' ;
2020-11-23 11:31:36 +00:00
}
2019-05-08 22:23:57 +00:00
// namespace members are vars or consts, not properties
if ( parent . kind === 'namespace' && obj . kind === 'property' ) {
2020-11-23 11:31:36 +00:00
if ( doclet . kind == 'constant' ) {
2019-05-08 22:23:57 +00:00
obj . kind = 'const' ;
2020-11-23 11:31:36 +00:00
}
else {
2019-05-08 22:23:57 +00:00
obj . kind = 'var' ;
2020-11-23 11:31:36 +00:00
}
2019-05-08 22:23:57 +00:00
}
}
}
}
resolveInheritance ( docs ) {
for ( let doclet of docs ) {
let obj = doclet . kind === 'namespace' ? this . namespaces [ doclet . longname ] : this . objects [ doclet . longname ] ;
if ( ! obj ) {
console . log ( ` Didn't find type ${ doclet . longname } ??? ` ) ;
continue ;
}
if ( ! obj . _parent )
continue ;
2020-11-23 11:31:36 +00:00
if ( doclet . inherited ) {
// remove inherited members if they aren't from an interface
2019-05-08 22:23:57 +00:00
let from = this . objects [ doclet . inherits ] ;
2020-11-23 11:31:36 +00:00
if ( ! from || ! from . _parent ) {
2019-05-08 22:23:57 +00:00
throw ` ' ${ doclet . longname } ' should inherit from ' ${ doclet . inherits } ', which is not defined. ` ;
2020-11-23 11:31:36 +00:00
}
2019-05-08 22:23:57 +00:00
if ( from . _parent . kind != 'interface' ) {
obj . _parent . members . splice ( obj . _parent . members . indexOf ( obj ) , 1 ) ;
obj . _parent = null ;
}
}
}
}
resolveParents ( docs ) {
for ( let doclet of docs ) {
let obj = this . objects [ doclet . longname ] ;
if ( ! obj || doclet . kind !== 'class' )
continue ;
let o = obj ;
// resolve augments
if ( doclet . augments && doclet . augments . length ) {
for ( let augment of doclet . augments ) {
let name = this . prepareTypeName ( augment ) ;
let wrappingName = name . match ( / [ ^ < ] + / s ) [ 0 ] ; / / g e t s e v e r y t h i n g u p t o a f i r s t < ( t o h a n d l e a u g m e n t s w i t h t y p e p a r a m e t e r s )
let baseType = this . objects [ wrappingName ] ;
if ( ! baseType ) {
console . log ( ` ERROR: Did not find base type: ${ augment } for ${ doclet . longname } ` ) ;
}
else {
if ( baseType . kind == 'class' ) {
o . baseType = dom . create . class ( name ) ;
}
else {
o . implements . push ( dom . create . interface ( name ) ) ;
}
}
}
}
}
}
createNamespace ( doclet ) {
/ * *
namespace : { comment : '' ,
meta :
{ filename : 'index.js' ,
lineno : 10 ,
columnno : 0 ,
path : '/Users/rich/Documents/GitHub/phaser/src/tweens' ,
code : { } } ,
kind : 'namespace' ,
name : 'Tweens' ,
memberof : 'Phaser' ,
longname : 'Phaser.Tweens' ,
scope : 'static' ,
_ _ _id : 'T000002R034468' ,
_ _ _s : true }
* /
// console.log('namespace:', doclet.longname);
let obj = dom . create . namespace ( doclet . name ) ;
return obj ;
}
createClass ( doclet ) {
let obj = dom . create . class ( doclet . name ) ;
let params = null ;
if ( doclet . params ) {
let ctor = dom . create . constructor ( null ) ;
this . setParams ( doclet , ctor ) ;
params = ctor . parameters ;
obj . members . push ( ctor ) ;
ctor . _parent = obj ;
}
this . processGeneric ( doclet , obj , params ) ;
if ( doclet . classdesc )
doclet . description = doclet . classdesc . replace ( regexEndLine , '$1\n' ) ; // make sure docs will be added
return obj ;
}
createInterface ( doclet ) {
return dom . create . interface ( doclet . name ) ;
}
createMember ( doclet ) {
let type = this . parseType ( doclet ) ;
let obj = dom . create . property ( doclet . name , type ) ;
this . processGeneric ( doclet , obj , null ) ;
this . processFlags ( doclet , obj ) ;
return obj ;
}
createEvent ( doclet ) {
let type = this . parseType ( doclet ) ;
let obj = dom . create . const ( doclet . name , type ) ;
this . processFlags ( doclet , obj ) ;
return obj ;
}
createEnum ( doclet ) {
let obj = dom . create . enum ( doclet . name , false ) ;
this . processFlags ( doclet , obj ) ;
return obj ;
}
createFunction ( doclet ) {
let returnType = dom . type . void ;
if ( doclet . returns ) {
returnType = this . parseType ( doclet . returns [ 0 ] ) ;
}
let obj = dom . create . function ( doclet . name , null , returnType ) ;
this . setParams ( doclet , obj ) ;
this . processGeneric ( doclet , obj , obj . parameters ) ;
this . processFlags ( doclet , obj ) ;
return obj ;
}
createTypedef ( doclet ) {
const typeName = doclet . type . names [ 0 ] ;
let type = null ;
if ( doclet . type . names [ 0 ] === 'object' ) {
let properties = [ ] ;
for ( let propDoc of doclet . properties ) {
let prop = this . createMember ( propDoc ) ;
properties . push ( prop ) ;
if ( propDoc . description )
prop . jsDocComment = propDoc . description . replace ( regexEndLine , '$1\n' ) ;
}
type = dom . create . objectType ( properties ) ;
if ( doclet . augments && doclet . augments . length ) {
let intersectionTypes = [ ] ;
for ( let i = 0 ; i < doclet . augments . length ; i ++ ) {
intersectionTypes . push ( dom . create . namedTypeReference ( doclet . augments [ i ] ) ) ;
}
intersectionTypes . push ( type ) ;
type = dom . create . intersection ( intersectionTypes ) ;
}
}
else {
if ( doclet . type . names [ 0 ] == "function" ) {
2022-09-20 17:44:25 +00:00
let returnType = dom . type . void ;
if ( doclet . returns ) {
returnType = this . parseType ( doclet . returns [ 0 ] ) ;
}
type = dom . create . functionType ( null , returnType ) ;
2019-05-08 22:23:57 +00:00
this . setParams ( doclet , type ) ;
}
else {
type = this . parseType ( doclet ) ;
}
}
let alias = dom . create . alias ( doclet . name , type ) ;
this . processGeneric ( doclet , alias , null ) ;
return alias ;
}
setParams ( doclet , obj ) {
let parameters = [ ] ;
2021-02-19 07:45:49 +00:00
if ( doclet . this ) {
let typeName = this . prepareTypeName ( doclet . this ) ;
let type = dom . create . namedTypeReference ( this . processTypeName ( typeName ) ) ;
let param = dom . create . parameter ( dom . type . this , type ) ;
parameters . push ( param ) ;
}
2019-05-08 22:23:57 +00:00
if ( doclet . params ) {
let optional = false ;
obj . jsDocComment = '' ;
for ( let paramDoc of doclet . params ) {
2020-11-20 15:48:02 +00:00
if ( ! paramDoc . name ) {
console . log ( ` Docs Error in ' ${ doclet . longname } ' in ${ doclet . meta . filename } @ ${ doclet . meta . lineno } ` ) ;
2020-11-23 10:19:46 +00:00
console . info ( paramDoc ) ;
2020-11-20 15:48:02 +00:00
}
2019-05-08 22:23:57 +00:00
if ( paramDoc . name . indexOf ( '.' ) != - 1 ) {
console . log ( ` Warning: ignoring param with '.' for ' ${ doclet . longname } ' in ${ doclet . meta . filename } @ ${ doclet . meta . lineno } ` ) ;
let defaultVal = paramDoc . defaultvalue !== undefined ? ` Default ${ String ( paramDoc . defaultvalue ) } . ` : '' ;
if ( paramDoc . description )
obj . jsDocComment += ` \n @param ${ paramDoc . name } ${ paramDoc . description . replace ( regexEndLine , '$1\n' ) } ` + defaultVal ;
else if ( defaultVal . length )
obj . jsDocComment += ` \n @param ${ paramDoc . name } ` + defaultVal ;
continue ;
}
2022-09-20 17:44:25 +00:00
let param = dom . create . parameter ( paramDoc . name , this . parseType ( paramDoc , dom . type . undefined ) ) ;
2019-05-08 22:23:57 +00:00
parameters . push ( param ) ;
if ( optional && paramDoc . optional != true ) {
console . log ( ` Warning: correcting to optional: parameter ' ${ paramDoc . name } ' for ' ${ doclet . longname } ' in ${ doclet . meta . filename } @ ${ doclet . meta . lineno } ` ) ;
paramDoc . optional = true ;
}
this . processFlags ( paramDoc , param ) ;
optional = optional || paramDoc . optional === true ;
let defaultVal = paramDoc . defaultvalue !== undefined ? ` Default ${ String ( paramDoc . defaultvalue ) } . ` : '' ;
if ( paramDoc . description )
obj . jsDocComment += ` \n @param ${ paramDoc . name } ${ paramDoc . description . replace ( regexEndLine , '$1\n' ) } ` + defaultVal ;
else if ( defaultVal . length )
obj . jsDocComment += ` \n @param ${ paramDoc . name } ` + defaultVal ;
}
}
obj . parameters = parameters ;
}
2022-09-20 17:44:25 +00:00
parseType ( typeDoc , nullableType = dom . type . null ) {
2019-05-08 22:23:57 +00:00
if ( ! typeDoc || ! typeDoc . type ) {
return dom . type . any ;
}
else {
let types = [ ] ;
for ( let name of typeDoc . type . names ) {
name = this . prepareTypeName ( name ) ;
let type = dom . create . namedTypeReference ( this . processTypeName ( name ) ) ;
types . push ( type ) ;
}
2022-09-20 17:44:25 +00:00
if ( typeDoc . nullable ) {
types . push ( nullableType ) ;
}
2019-05-08 22:23:57 +00:00
if ( types . length == 1 )
return types [ 0 ] ;
else
return dom . create . union ( types ) ;
}
}
prepareTypeName ( name ) {
if ( name . indexOf ( '*' ) != - 1 ) {
name = name . split ( '*' ) . join ( 'any' ) ;
}
2019-06-04 17:14:58 +00:00
if ( name . indexOf ( '.<' ) != - 1 && name !== 'Array.<function()>' ) {
2019-05-08 22:23:57 +00:00
name = name . split ( '.<' ) . join ( '<' ) ;
}
return name ;
}
processTypeName ( name ) {
if ( name === 'float' )
return 'number' ;
if ( name === 'function' )
return 'Function' ;
2019-06-04 17:14:58 +00:00
if ( name === 'Array.<function()>' )
return 'Function[]' ;
2019-05-08 22:23:57 +00:00
if ( name === 'array' )
return 'any[]' ;
if ( name . startsWith ( 'Array<' ) ) {
let matches = name . match ( /^Array<(.*)>$/ ) ;
if ( matches && matches [ 1 ] ) {
return this . processTypeName ( matches [ 1 ] ) + '[]' ;
}
}
else if ( name . startsWith ( 'Object<' ) ) {
let matches = name . match ( /^Object<(.*)>$/ ) ;
if ( matches && matches [ 1 ] ) {
if ( matches [ 1 ] . indexOf ( ',' ) != - 1 ) {
let parts = matches [ 1 ] . split ( ',' ) ;
return ` {[key: ${ this . processTypeName ( parts [ 0 ] ) } ]: ${ this . processTypeName ( parts [ 1 ] ) } } ` ;
}
else {
return ` {[key: string]: ${ this . processTypeName ( matches [ 1 ] ) } } ` ;
}
}
}
return name ;
}
processFlags ( doclet , obj ) {
obj . flags = dom . DeclarationFlags . None ;
if ( doclet . variable === true ) {
obj . flags |= dom . ParameterFlags . Rest ;
let type = obj . type ;
if ( ! type . name . endsWith ( '[]' ) ) {
if ( type . name != 'any' )
console . log ( ` Warning: rest parameter should be an array type for ${ doclet . longname } ` ) ;
type . name = type . name + '[]' ; // Must be an array
}
}
else if ( doclet . optional === true ) { // Rest implies Optional – no need to flag it as such
if ( obj [ 'kind' ] === 'parameter' )
obj . flags |= dom . ParameterFlags . Optional ;
else
obj . flags |= dom . DeclarationFlags . Optional ;
}
switch ( doclet . access ) {
case 'protected' :
obj . flags |= dom . DeclarationFlags . Protected ;
break ;
case 'private' :
obj . flags |= dom . DeclarationFlags . Private ;
break ;
}
if ( doclet . readonly || doclet . kind === 'constant' )
obj . flags |= dom . DeclarationFlags . ReadOnly ;
if ( doclet . scope === 'static' )
obj . flags |= dom . DeclarationFlags . Static ;
}
processGeneric ( doclet , obj , params ) {
if ( doclet . tags )
for ( let tag of doclet . tags ) {
if ( tag . originalTitle === 'generic' ) {
2020-01-02 20:51:38 +00:00
/ * *
* { string } K - [ key ]
* 1 = string | 2 = null | 3 = K | 4 = key
*
* { string = string } K - [ key ]
* 1 = string | 2 = string | 3 = K | 4 = key
* /
const matches = tag . value . match ( /(?:(?:{)([^}=]+)(?:=)?([^}=]+)?(?:}))?\s?([^\s]+)(?:\s?-\s?(?:\[)(.+)(?:\]))?/ ) ;
const [ _ , _type , _defaultType , _name , _paramsNames ] = matches ;
const typeParam = dom . create . typeParameter ( _name , _type == null ? null : dom . create . typeParameter ( _type ) ) ;
if ( _defaultType != null ) {
typeParam . defaultType = dom . create . typeParameter ( _defaultType ) ;
}
2019-05-08 22:23:57 +00:00
obj . typeParameters . push ( typeParam ) ;
2020-01-02 20:51:38 +00:00
handleOverrides ( _paramsNames , _name ) ;
2019-05-08 22:23:57 +00:00
}
else if ( tag . originalTitle === 'genericUse' ) {
let matches = tag . value . match ( /(?:(?:{)([^}]+)(?:}))(?:\s?-\s?(?:\[)(.+)(?:\]))?/ ) ;
let overrideType = this . prepareTypeName ( matches [ 1 ] ) ;
handleOverrides ( matches [ 2 ] , this . processTypeName ( overrideType ) ) ;
}
}
function handleOverrides ( matchedString , overrideType ) {
if ( matchedString != null ) {
let overrides = matchedString . split ( ',' ) ;
if ( params != null ) {
for ( let param of params ) {
if ( overrides . indexOf ( param . name ) != - 1 ) {
param . type = dom . create . namedTypeReference ( overrideType ) ;
}
}
}
if ( overrides . indexOf ( '$return' ) != - 1 ) { // has $return, must be a function
obj . returnType = dom . create . namedTypeReference ( overrideType ) ;
}
if ( overrides . indexOf ( '$type' ) != - 1 ) { // has $type, must be a property
obj . type = dom . create . namedTypeReference ( overrideType ) ;
}
}
}
}
}
exports . Parser = Parser ;
//# sourceMappingURL=Parser.js.map