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>
114 lines
4.3 KiB
Plaintext
114 lines
4.3 KiB
Plaintext
beginCompilationUnit(class)
|
|
beginMetadataStar(class)
|
|
endMetadataStar(0)
|
|
beginClassOrNamedMixinApplicationPrelude(class)
|
|
handleIdentifier(late, classOrMixinDeclaration)
|
|
handleNoTypeVariables({)
|
|
beginClassDeclaration(class, null, late)
|
|
handleNoType(late)
|
|
handleClassExtends(null, 1)
|
|
handleClassNoWithClause()
|
|
handleClassOrMixinImplements(null, 0)
|
|
handleClassHeader(class, class, null)
|
|
beginClassOrMixinBody(DeclarationKind.Class, {)
|
|
beginMetadataStar(int)
|
|
endMetadataStar(0)
|
|
beginMember()
|
|
beginMethod(null, null, null, null, get, g)
|
|
handleIdentifier(int, typeReference)
|
|
handleNoTypeArguments(get)
|
|
handleType(int, null)
|
|
handleIdentifier(g, methodDeclaration)
|
|
handleNoTypeVariables(=>)
|
|
handleNoFormalParameters(=>, MemberKind.NonStaticMethod)
|
|
handleNoInitializers()
|
|
handleAsyncModifier(null, null)
|
|
handleLiteralInt(1)
|
|
handleExpressionFunctionBody(=>, ;)
|
|
endClassMethod(get, int, =>, null, ;)
|
|
endMember()
|
|
endClassOrMixinBody(DeclarationKind.Class, 1, {, })
|
|
endClassDeclaration(class, })
|
|
endTopLevelDeclaration(class)
|
|
beginMetadataStar(class)
|
|
endMetadataStar(0)
|
|
beginClassOrNamedMixinApplicationPrelude(class)
|
|
handleIdentifier(required, classOrMixinDeclaration)
|
|
handleNoTypeVariables({)
|
|
beginClassDeclaration(class, null, required)
|
|
handleNoType(required)
|
|
handleClassExtends(null, 1)
|
|
handleClassNoWithClause()
|
|
handleClassOrMixinImplements(null, 0)
|
|
handleClassHeader(class, class, null)
|
|
beginClassOrMixinBody(DeclarationKind.Class, {)
|
|
beginMetadataStar(int)
|
|
endMetadataStar(0)
|
|
beginMember()
|
|
beginMethod(null, null, null, null, get, g)
|
|
handleIdentifier(int, typeReference)
|
|
handleNoTypeArguments(get)
|
|
handleType(int, null)
|
|
handleIdentifier(g, methodDeclaration)
|
|
handleNoTypeVariables(=>)
|
|
handleNoFormalParameters(=>, MemberKind.NonStaticMethod)
|
|
handleNoInitializers()
|
|
handleAsyncModifier(null, null)
|
|
handleLiteralInt(2)
|
|
handleExpressionFunctionBody(=>, ;)
|
|
endClassMethod(get, int, =>, null, ;)
|
|
endMember()
|
|
endClassOrMixinBody(DeclarationKind.Class, 1, {, })
|
|
endClassDeclaration(class, })
|
|
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(late)
|
|
endMetadataStar(0)
|
|
beginMember()
|
|
beginFields({)
|
|
handleIdentifier(late, typeReference)
|
|
handleNoTypeArguments(l)
|
|
handleType(late, null)
|
|
handleIdentifier(l, fieldDeclaration)
|
|
beginFieldInitializer(=)
|
|
handleIdentifier(late, expression)
|
|
handleNoTypeArguments(()
|
|
beginArguments(()
|
|
endArguments(0, (, ))
|
|
handleSend(late, ;)
|
|
endFieldInitializer(=, ;)
|
|
endClassFields(null, null, null, null, null, null, 1, late, ;)
|
|
endMember()
|
|
beginMetadataStar(required)
|
|
endMetadataStar(0)
|
|
beginMember()
|
|
beginFields(;)
|
|
handleIdentifier(required, typeReference)
|
|
handleNoTypeArguments(r)
|
|
handleType(required, null)
|
|
handleIdentifier(r, fieldDeclaration)
|
|
beginFieldInitializer(=)
|
|
handleIdentifier(required, expression)
|
|
handleNoTypeArguments(()
|
|
beginArguments(()
|
|
endArguments(0, (, ))
|
|
handleSend(required, ;)
|
|
endFieldInitializer(=, ;)
|
|
endClassFields(null, null, null, null, null, null, 1, required, ;)
|
|
endMember()
|
|
endClassOrMixinBody(DeclarationKind.Class, 2, {, })
|
|
endClassDeclaration(class, })
|
|
endTopLevelDeclaration()
|
|
endCompilationUnit(3, )
|