3a1f732c0f
This CL:
* Changes the events so beginX and endX events always comes in pairs
(though technically not right as some specific events can be beginX
endY --- but in those cases it is at least documented and used in code
that actually tests it).
-> This entails adding some events and converting something from
"beginX" to "handleX" instead.
* Adds a utility that can generate an AST of sorts directly from the
parser via a listener using the begin/end matching (and knowing of the
specific ones that doesn't match directly).
* Adds a test that checks that - at least for all tested (50,000+) files
- the AST actually generate "correctly", i.e. matches up begin/ends
and ends up with a single top entry "CompilationUnit".
* Adds a different visualization to the parser listener events by
displaying the "AST directly from the parser" in a UI that can be
navigated. The visualization may not be the best, but it's certainly
a stepping stone.
Change-Id: I9b27f7bbf3be442adc92f357c7b3c46da6f84cf7
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/159664
Reviewed-by: Johnni Winther <johnniwinther@google.com>
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
149 lines
5.4 KiB
Plaintext
149 lines
5.4 KiB
Plaintext
beginCompilationUnit(bool)
|
|
beginMetadataStar(bool)
|
|
endMetadataStar(0)
|
|
beginTopLevelMember(bool)
|
|
beginFields()
|
|
handleIdentifier(bool, typeReference)
|
|
handleNoTypeArguments(x)
|
|
handleType(bool, null)
|
|
handleIdentifier(x, topLevelVariableDeclaration)
|
|
handleNoFieldInitializer(;)
|
|
endTopLevelFields(null, null, null, null, null, 1, bool, ;)
|
|
endTopLevelDeclaration(bool)
|
|
beginMetadataStar(bool)
|
|
endMetadataStar(0)
|
|
beginTopLevelMember(bool)
|
|
beginFields(;)
|
|
handleIdentifier(bool, typeReference)
|
|
handleNoTypeArguments(x)
|
|
handleType(bool, null)
|
|
handleIdentifier(x, topLevelVariableDeclaration)
|
|
handleNoFieldInitializer(;)
|
|
endTopLevelFields(null, null, null, null, null, 1, bool, ;)
|
|
endTopLevelDeclaration(errors)
|
|
beginMetadataStar(errors)
|
|
endMetadataStar(0)
|
|
beginTopLevelMember(errors)
|
|
beginTopLevelMethod(;, null)
|
|
handleNoType(;)
|
|
handleIdentifier(errors, topLevelFunctionDeclaration)
|
|
handleNoTypeVariables(()
|
|
beginFormalParameters((, MemberKind.TopLevelMethod)
|
|
endFormalParameters(0, (, ), MemberKind.TopLevelMethod)
|
|
handleAsyncModifier(null, null)
|
|
beginBlockFunctionBody({)
|
|
handleIdentifier(print, expression)
|
|
handleNoTypeArguments(()
|
|
beginArguments(()
|
|
handleIdentifier(x, expression)
|
|
handleNoTypeArguments())
|
|
handleNoArguments())
|
|
handleSend(x, ))
|
|
endArguments(1, (, ))
|
|
handleSend(print, ;)
|
|
handleExpressionStatement(;)
|
|
handleIdentifier(print, expression)
|
|
handleNoTypeArguments(()
|
|
beginArguments(()
|
|
handleIdentifier(x, expression)
|
|
handleNoTypeArguments(!)
|
|
handleNoArguments(!)
|
|
handleSend(x, !)
|
|
handleNonNullAssertExpression(!)
|
|
endArguments(1, (, ))
|
|
handleSend(print, ;)
|
|
handleExpressionStatement(;)
|
|
handleIdentifier(print, expression)
|
|
handleNoTypeArguments(()
|
|
beginArguments(()
|
|
handleIdentifier(x, expression)
|
|
handleNoTypeArguments())
|
|
handleNoArguments())
|
|
handleSend(x, ))
|
|
handleUnaryPrefixExpression(!)
|
|
endArguments(1, (, ))
|
|
handleSend(print, ;)
|
|
handleExpressionStatement(;)
|
|
endBlockFunctionBody(3, {, })
|
|
endTopLevelMethod(errors, null, })
|
|
endTopLevelDeclaration(class)
|
|
beginMetadataStar(class)
|
|
endMetadataStar(0)
|
|
beginClassOrNamedMixinApplicationPrelude(class)
|
|
handleIdentifier(C, classOrMixinDeclaration)
|
|
handleNoTypeVariables({)
|
|
beginClassDeclaration(class, null, C)
|
|
handleNoType(C)
|
|
handleClassExtends(null, 1)
|
|
handleClassNoWithClause()
|
|
handleClassOrMixinImplements(null, 0)
|
|
handleClassHeader(class, class, null)
|
|
beginClassOrMixinBody(DeclarationKind.Class, {)
|
|
beginMetadataStar(C)
|
|
endMetadataStar(0)
|
|
beginMember()
|
|
beginMethod(null, null, null, null, null, C)
|
|
handleNoType({)
|
|
handleIdentifier(C, methodDeclaration)
|
|
handleIdentifier(c0, methodDeclarationContinuation)
|
|
handleQualified(.)
|
|
handleNoTypeVariables(()
|
|
beginFormalParameters((, MemberKind.NonStaticMethod)
|
|
endFormalParameters(0, (, ), MemberKind.NonStaticMethod)
|
|
beginInitializers(:)
|
|
beginInitializer(super)
|
|
handleSuperExpression(super, expression)
|
|
handleNoTypeArguments(()
|
|
beginArguments(()
|
|
endArguments(0, (, ))
|
|
handleSend(super, ;)
|
|
endInitializer(;)
|
|
endInitializers(1, :, ;)
|
|
handleAsyncModifier(null, null)
|
|
handleEmptyFunctionBody(;)
|
|
endClassConstructor(null, C, (, :, ;)
|
|
endMember()
|
|
beginMetadataStar(C)
|
|
endMetadataStar(0)
|
|
beginMember()
|
|
beginMethod(null, null, null, null, null, C)
|
|
handleNoType(;)
|
|
handleIdentifier(C, methodDeclaration)
|
|
handleIdentifier(c1, methodDeclarationContinuation)
|
|
handleQualified(.)
|
|
handleNoTypeVariables(()
|
|
beginFormalParameters((, MemberKind.NonStaticMethod)
|
|
endFormalParameters(0, (, ), MemberKind.NonStaticMethod)
|
|
beginInitializers(:)
|
|
beginInitializer(super)
|
|
handleSuperExpression(super, expression)
|
|
handleNoTypeArguments(()
|
|
beginArguments(()
|
|
endArguments(0, (, ))
|
|
handleSend(super, !)
|
|
handleNonNullAssertExpression(!)
|
|
endInitializer(;)
|
|
endInitializers(1, :, ;)
|
|
handleAsyncModifier(null, null)
|
|
handleEmptyFunctionBody(;)
|
|
endClassConstructor(null, C, (, :, ;)
|
|
endMember()
|
|
endClassOrMixinBody(DeclarationKind.Class, 2, {, })
|
|
endClassDeclaration(class, })
|
|
endTopLevelDeclaration(main)
|
|
beginMetadataStar(main)
|
|
endMetadataStar(0)
|
|
beginTopLevelMember(main)
|
|
beginTopLevelMethod(}, null)
|
|
handleNoType(})
|
|
handleIdentifier(main, topLevelFunctionDeclaration)
|
|
handleNoTypeVariables(()
|
|
beginFormalParameters((, MemberKind.TopLevelMethod)
|
|
endFormalParameters(0, (, ), MemberKind.TopLevelMethod)
|
|
handleAsyncModifier(null, null)
|
|
beginBlockFunctionBody({)
|
|
endBlockFunctionBody(0, {, })
|
|
endTopLevelMethod(main, null, })
|
|
endTopLevelDeclaration()
|
|
endCompilationUnit(5, )
|