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

Unified Diff: pkg/front_end/lib/src/fasta/scanner.dart

Issue 2903063003: update lazy assignment operators (Closed)
Patch Set: Created 3 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 | « no previous file | pkg/front_end/lib/src/fasta/scanner/abstract_scanner.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/lib/src/fasta/scanner.dart
diff --git a/pkg/front_end/lib/src/fasta/scanner.dart b/pkg/front_end/lib/src/fasta/scanner.dart
index 7251d6c9697e7ad9eb45226b92e69f0ddc52a2b3..c1015518f64a0faa97bdf37043f6fff0ee856478 100644
--- a/pkg/front_end/lib/src/fasta/scanner.dart
+++ b/pkg/front_end/lib/src/fasta/scanner.dart
@@ -82,8 +82,7 @@ ScannerResult scanString(String source,
assert(source != null, 'source must not be null');
StringScanner scanner = new StringScanner(source,
includeComments: includeComments,
- scanGenericMethodComments: scanGenericMethodComments,
- scanLazyAssignmentOperators: scanLazyAssignmentOperators);
+ scanGenericMethodComments: scanGenericMethodComments);
return _tokenizeAndRecover(scanner, recover, source: source);
}
« no previous file with comments | « no previous file | pkg/front_end/lib/src/fasta/scanner/abstract_scanner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698