Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Unified Diff: pkg/analyzer/lib/src/fasta/ast_builder.dart

Issue 2767543003: Add begin events for const and new expressions. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/summary/fasta/summary_builder.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/fasta/ast_builder.dart
diff --git a/pkg/analyzer/lib/src/fasta/ast_builder.dart b/pkg/analyzer/lib/src/fasta/ast_builder.dart
index 8c897c5c8b039e923ff3fc947af4cf9746573196..a5f887c69c5c8c02c802456e131d6c8a5ab6510f 100644
--- a/pkg/analyzer/lib/src/fasta/ast_builder.dart
+++ b/pkg/analyzer/lib/src/fasta/ast_builder.dart
@@ -82,7 +82,7 @@ class AstBuilder extends ScopeListener {
}
@override
- void handleConstExpression(Token token) {
+ void endConstExpression(Token token) {
debugEvent("ConstExpression");
_handleInstanceCreation(token);
}
@@ -95,7 +95,7 @@ class AstBuilder extends ScopeListener {
}
@override
- void handleNewExpression(Token token) {
+ void endNewExpression(Token token) {
debugEvent("NewExpression");
_handleInstanceCreation(token);
}
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/summary/fasta/summary_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698