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

Unified Diff: pkg/front_end/lib/src/fasta/parser/listener.dart

Issue 2961813002: Rename handleFunctionType to endFunctionType. (Closed)
Patch Set: Created 3 years, 6 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
Index: pkg/front_end/lib/src/fasta/parser/listener.dart
diff --git a/pkg/front_end/lib/src/fasta/parser/listener.dart b/pkg/front_end/lib/src/fasta/parser/listener.dart
index 1045c3f3303e25473be28428339778c126d103f7..0a165298db0f0a7e65a463bbc34ab11f90740367 100644
--- a/pkg/front_end/lib/src/fasta/parser/listener.dart
+++ b/pkg/front_end/lib/src/fasta/parser/listener.dart
@@ -737,13 +737,15 @@ class Listener {
logEvent("NoName");
}
+ void beginFunctionType(Token beginToken) {}
+
/// Handle the end of a generic function type declaration.
///
/// Substructures:
/// - Return type
/// - Type variables
/// - Formal parameters
- void handleFunctionType(Token functionToken, Token endToken) {
+ void endFunctionType(Token functionToken, Token endToken) {
logEvent("FunctionType");
}
« no previous file with comments | « pkg/front_end/lib/src/fasta/kernel/body_builder.dart ('k') | pkg/front_end/lib/src/fasta/parser/parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698