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

Unified Diff: pkg/compiler/lib/src/parser/listener.dart

Issue 1388523002: dart2js: add support for configuration-specific imports. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address comments. Created 5 years, 2 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/compiler/lib/src/parser/listener.dart
diff --git a/pkg/compiler/lib/src/parser/listener.dart b/pkg/compiler/lib/src/parser/listener.dart
index ec8274d1ee5cad274a6d088ceb1f541707398c3e..02cb2af6495da0f592a44ba854d3e86d71cbb823 100644
--- a/pkg/compiler/lib/src/parser/listener.dart
+++ b/pkg/compiler/lib/src/parser/listener.dart
@@ -233,6 +233,24 @@ class Listener {
Token asKeyword, Token semicolon) {
}
+ void beginConditionalUris(Token token) {
+ }
+
+ void endConditionalUris(int count) {
+ }
+
+ void beginConditionalUri(Token ifKeyword) {
+ }
+
+ void endConditionalUri(Token ifKeyword, Token equalitySign) {
+ }
+
+ void beginDottedName(Token token) {
+ }
+
+ void endDottedName(int count, Token firstIdentifier) {
+ }
+
void beginInitializedIdentifier(Token token) {
}

Powered by Google App Engine
This is Rietveld 408576698