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>
43 lines
1.4 KiB
Plaintext
43 lines
1.4 KiB
Plaintext
beginCompilationUnit(Logger)
|
|
beginMetadataStar(Logger)
|
|
endMetadataStar(0)
|
|
beginTopLevelMember(Logger)
|
|
beginTopLevelMethod(, null)
|
|
handleIdentifier(Logger, typeReference)
|
|
handleNoTypeArguments(get)
|
|
handleType(Logger, null)
|
|
handleIdentifier(log, topLevelFunctionDeclaration)
|
|
handleNoTypeVariables(=>)
|
|
handleNoFormalParameters(=>, MemberKind.TopLevelMethod)
|
|
handleAsyncModifier(null, null)
|
|
handleIdentifier(Zone, expression)
|
|
handleNoTypeArguments(.)
|
|
handleNoArguments(.)
|
|
handleSend(Zone, .)
|
|
handleIdentifier(current, expressionContinuation)
|
|
handleNoTypeArguments([)
|
|
handleNoArguments([)
|
|
handleSend(current, [)
|
|
handleEndingBinaryExpression(.)
|
|
handleIdentifier(logKey, expression)
|
|
handleNoTypeArguments(])
|
|
handleNoArguments(])
|
|
handleSend(logKey, ])
|
|
handleIndexedExpression(null, [, ])
|
|
beginAsOperatorType(as)
|
|
handleIdentifier(Logger, typeReference)
|
|
handleNoTypeArguments(?)
|
|
handleType(Logger, ?)
|
|
endAsOperatorType(as)
|
|
handleAsOperator(as)
|
|
beginBinaryExpression(??)
|
|
handleIdentifier(_default, expression)
|
|
handleNoTypeArguments(;)
|
|
handleNoArguments(;)
|
|
handleSend(_default, ;)
|
|
endBinaryExpression(??)
|
|
handleExpressionFunctionBody(=>, ;)
|
|
endTopLevelMethod(Logger, get, ;)
|
|
endTopLevelDeclaration()
|
|
endCompilationUnit(1, )
|