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>
110 lines
4.0 KiB
Plaintext
110 lines
4.0 KiB
Plaintext
Problems reported:
|
|
|
|
parser/nnbd/issue_39858:2:8: Variables must be declared using the keywords 'const', 'final', 'var' or a type name.
|
|
late x1;
|
|
^^
|
|
|
|
parser/nnbd/issue_39858:3:15: Variables must be declared using the keywords 'const', 'final', 'var' or a type name.
|
|
static late x2;
|
|
^^
|
|
|
|
parser/nnbd/issue_39858:4:18: Variables must be declared using the keywords 'const', 'final', 'var' or a type name.
|
|
covariant late x3;
|
|
^^
|
|
|
|
parser/nnbd/issue_39858:5:8: Variables must be declared using the keywords 'const', 'final', 'var' or a type name.
|
|
late x4 = 0;
|
|
^^
|
|
|
|
parser/nnbd/issue_39858:6:15: Variables must be declared using the keywords 'const', 'final', 'var' or a type name.
|
|
static late x5 = 0;
|
|
^^
|
|
|
|
parser/nnbd/issue_39858:7:18: Variables must be declared using the keywords 'const', 'final', 'var' or a type name.
|
|
covariant late x6 = 0;
|
|
^^
|
|
|
|
beginCompilationUnit(class)
|
|
beginMetadataStar(class)
|
|
endMetadataStar(0)
|
|
beginClassOrNamedMixinApplicationPrelude(class)
|
|
handleIdentifier(X, classOrMixinDeclaration)
|
|
handleNoTypeVariables({)
|
|
beginClassDeclaration(class, null, X)
|
|
handleNoType(X)
|
|
handleClassExtends(null, 1)
|
|
handleClassNoWithClause()
|
|
handleClassOrMixinImplements(null, 0)
|
|
handleClassHeader(class, class, null)
|
|
beginClassOrMixinBody(DeclarationKind.Class, {)
|
|
beginMetadataStar(late)
|
|
endMetadataStar(0)
|
|
beginMember()
|
|
beginFields({)
|
|
handleRecoverableError(MissingConstFinalVarOrType, x1, x1)
|
|
handleNoType(late)
|
|
handleIdentifier(x1, fieldDeclaration)
|
|
handleNoFieldInitializer(;)
|
|
endClassFields(null, null, null, null, late, null, 1, late, ;)
|
|
endMember()
|
|
beginMetadataStar(static)
|
|
endMetadataStar(0)
|
|
beginMember()
|
|
beginFields(;)
|
|
handleRecoverableError(MissingConstFinalVarOrType, x2, x2)
|
|
handleNoType(late)
|
|
handleIdentifier(x2, fieldDeclaration)
|
|
handleNoFieldInitializer(;)
|
|
endClassFields(null, null, static, null, late, null, 1, static, ;)
|
|
endMember()
|
|
beginMetadataStar(covariant)
|
|
endMetadataStar(0)
|
|
beginMember()
|
|
beginFields(;)
|
|
handleRecoverableError(MissingConstFinalVarOrType, x3, x3)
|
|
handleNoType(late)
|
|
handleIdentifier(x3, fieldDeclaration)
|
|
handleNoFieldInitializer(;)
|
|
endClassFields(null, null, null, covariant, late, null, 1, covariant, ;)
|
|
endMember()
|
|
beginMetadataStar(late)
|
|
endMetadataStar(0)
|
|
beginMember()
|
|
beginFields(;)
|
|
handleRecoverableError(MissingConstFinalVarOrType, x4, x4)
|
|
handleNoType(late)
|
|
handleIdentifier(x4, fieldDeclaration)
|
|
beginFieldInitializer(=)
|
|
handleLiteralInt(0)
|
|
endFieldInitializer(=, ;)
|
|
endClassFields(null, null, null, null, late, null, 1, late, ;)
|
|
endMember()
|
|
beginMetadataStar(static)
|
|
endMetadataStar(0)
|
|
beginMember()
|
|
beginFields(;)
|
|
handleRecoverableError(MissingConstFinalVarOrType, x5, x5)
|
|
handleNoType(late)
|
|
handleIdentifier(x5, fieldDeclaration)
|
|
beginFieldInitializer(=)
|
|
handleLiteralInt(0)
|
|
endFieldInitializer(=, ;)
|
|
endClassFields(null, null, static, null, late, null, 1, static, ;)
|
|
endMember()
|
|
beginMetadataStar(covariant)
|
|
endMetadataStar(0)
|
|
beginMember()
|
|
beginFields(;)
|
|
handleRecoverableError(MissingConstFinalVarOrType, x6, x6)
|
|
handleNoType(late)
|
|
handleIdentifier(x6, fieldDeclaration)
|
|
beginFieldInitializer(=)
|
|
handleLiteralInt(0)
|
|
endFieldInitializer(=, ;)
|
|
endClassFields(null, null, null, covariant, late, null, 1, covariant, ;)
|
|
endMember()
|
|
endClassOrMixinBody(DeclarationKind.Class, 6, {, })
|
|
endClassDeclaration(class, })
|
|
endTopLevelDeclaration()
|
|
endCompilationUnit(1, )
|