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

Unified Diff: pkg/front_end/lib/src/fasta/scanner/utf8_bytes_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 | « pkg/front_end/lib/src/fasta/scanner/token_constants.dart ('k') | pkg/front_end/lib/src/scanner/token.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/utf8_bytes_scanner.dart
diff --git a/pkg/front_end/lib/src/fasta/scanner/utf8_bytes_scanner.dart b/pkg/front_end/lib/src/fasta/scanner/utf8_bytes_scanner.dart
index 221fac2832b7a474b06f54b80aa4ac1b1c0d986d..0ab8ca2226dc925f8de2cdfa0a9835208ed72413 100644
--- a/pkg/front_end/lib/src/fasta/scanner/utf8_bytes_scanner.dart
+++ b/pkg/front_end/lib/src/fasta/scanner/utf8_bytes_scanner.dart
@@ -80,11 +80,8 @@ class Utf8BytesScanner extends ArrayBasedScanner {
* is not the case, the entire array is copied before scanning.
*/
Utf8BytesScanner(this.bytes,
- {bool includeComments: false,
- bool scanGenericMethodComments: false,
- bool scanLazyAssignmentOperators: false})
+ {bool includeComments: false, bool scanGenericMethodComments: false})
: super(includeComments, scanGenericMethodComments,
- scanLazyAssignmentOperators,
numberOfBytesHint: bytes.length) {
assert(bytes.last == 0);
// Skip a leading BOM.
« no previous file with comments | « pkg/front_end/lib/src/fasta/scanner/token_constants.dart ('k') | pkg/front_end/lib/src/scanner/token.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698