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

Unified Diff: pkg/compiler/lib/src/scanner/array_based_scanner.dart

Issue 1151163004: Implementation of null-aware operators. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 7 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 | « pkg/compiler/lib/src/resolved_visitor.dart ('k') | pkg/compiler/lib/src/scanner/listener.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/scanner/array_based_scanner.dart
diff --git a/pkg/compiler/lib/src/scanner/array_based_scanner.dart b/pkg/compiler/lib/src/scanner/array_based_scanner.dart
index 9fbf7152ce07bd77539bf8441d782680d4f6ec4c..85e3a3c14799839893bd8b3907c26bfe8e0a9c40 100644
--- a/pkg/compiler/lib/src/scanner/array_based_scanner.dart
+++ b/pkg/compiler/lib/src/scanner/array_based_scanner.dart
@@ -5,8 +5,9 @@
part of scanner;
abstract class ArrayBasedScanner extends AbstractScanner {
- ArrayBasedScanner(SourceFile file, bool includeComments)
- : super(file, includeComments);
+ ArrayBasedScanner(SourceFile file, bool includeComments,
+ bool enableNullAwareOperators)
+ : super(file, includeComments, enableNullAwareOperators);
/**
* The stack of open groups, e.g [: { ... ( .. :]
@@ -217,4 +218,4 @@ abstract class ArrayBasedScanner extends AbstractScanner {
groupingStack = groupingStack.tail;
}
}
-}
+}
« no previous file with comments | « pkg/compiler/lib/src/resolved_visitor.dart ('k') | pkg/compiler/lib/src/scanner/listener.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698