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>
89 lines
3.5 KiB
Plaintext
89 lines
3.5 KiB
Plaintext
beginCompilationUnit(class)
|
|
beginMetadataStar(class)
|
|
endMetadataStar(0)
|
|
beginClassOrNamedMixinApplicationPrelude(class)
|
|
handleIdentifier(Foo, classOrMixinDeclaration)
|
|
handleNoTypeVariables({)
|
|
beginClassDeclaration(class, null, Foo)
|
|
handleNoType(Foo)
|
|
handleClassExtends(null, 1)
|
|
handleClassNoWithClause()
|
|
handleClassOrMixinImplements(null, 0)
|
|
handleClassHeader(class, class, null)
|
|
beginClassOrMixinBody(DeclarationKind.Class, {)
|
|
beginMetadataStar(String)
|
|
endMetadataStar(0)
|
|
beginMember()
|
|
beginFields({)
|
|
handleIdentifier(String, typeReference)
|
|
handleNoTypeArguments(?)
|
|
handleType(String, ?)
|
|
handleIdentifier(x, fieldDeclaration)
|
|
handleNoFieldInitializer(;)
|
|
endClassFields(null, null, null, null, null, null, 1, String, ;)
|
|
endMember()
|
|
beginMetadataStar(int)
|
|
endMetadataStar(0)
|
|
beginMember()
|
|
beginFields(;)
|
|
handleIdentifier(int, typeReference)
|
|
handleNoTypeArguments(y)
|
|
handleType(int, null)
|
|
handleIdentifier(y, fieldDeclaration)
|
|
handleNoFieldInitializer(;)
|
|
endClassFields(null, null, null, null, null, null, 1, int, ;)
|
|
endMember()
|
|
beginMetadataStar(Foo)
|
|
endMetadataStar(0)
|
|
beginMember()
|
|
beginMethod(null, null, null, null, null, Foo)
|
|
handleNoType(;)
|
|
handleIdentifier(Foo, methodDeclaration)
|
|
handleNoTypeVariables(()
|
|
beginFormalParameters((, MemberKind.NonStaticMethod)
|
|
beginMetadataStar(Object)
|
|
endMetadataStar(0)
|
|
beginFormalParameter(Object, MemberKind.NonStaticMethod, null, null, null)
|
|
handleIdentifier(Object, typeReference)
|
|
handleNoTypeArguments(?)
|
|
handleType(Object, ?)
|
|
handleIdentifier(o, formalParameterDeclaration)
|
|
handleFormalParameterWithoutValue())
|
|
endFormalParameter(null, null, o, null, null, FormalParameterKind.mandatory, MemberKind.NonStaticMethod)
|
|
endFormalParameters(1, (, ), MemberKind.NonStaticMethod)
|
|
beginInitializers(:)
|
|
beginInitializer(x)
|
|
handleIdentifier(x, expression)
|
|
handleNoTypeArguments(=)
|
|
handleNoArguments(=)
|
|
handleSend(x, =)
|
|
handleIdentifier(o, expression)
|
|
handleNoTypeArguments(as)
|
|
handleNoArguments(as)
|
|
handleSend(o, as)
|
|
beginAsOperatorType(as)
|
|
handleIdentifier(String, typeReference)
|
|
handleNoTypeArguments(,)
|
|
handleType(String, null)
|
|
endAsOperatorType(as)
|
|
handleAsOperator(as)
|
|
handleAssignmentExpression(=)
|
|
endInitializer(,)
|
|
beginInitializer(y)
|
|
handleIdentifier(y, expression)
|
|
handleNoTypeArguments(=)
|
|
handleNoArguments(=)
|
|
handleSend(y, =)
|
|
handleLiteralInt(0)
|
|
handleAssignmentExpression(=)
|
|
endInitializer(;)
|
|
endInitializers(2, :, ;)
|
|
handleAsyncModifier(null, null)
|
|
handleEmptyFunctionBody(;)
|
|
endClassConstructor(null, Foo, (, :, ;)
|
|
endMember()
|
|
endClassOrMixinBody(DeclarationKind.Class, 3, {, })
|
|
endClassDeclaration(class, })
|
|
endTopLevelDeclaration()
|
|
endCompilationUnit(1, )
|