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

Unified Diff: pkg/analyzer/lib/src/generated/parser.dart

Issue 2952113002: add Parser.withoutFasta constructor (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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/generated/parser.dart
diff --git a/pkg/analyzer/lib/src/generated/parser.dart b/pkg/analyzer/lib/src/generated/parser.dart
index 3552b3d80ae5ea782e4a106bf793d501d921e338..765b4c6d7b853e51229af6eaa2082933e44d9050 100644
--- a/pkg/analyzer/lib/src/generated/parser.dart
+++ b/pkg/analyzer/lib/src/generated/parser.dart
@@ -284,11 +284,11 @@ class Parser {
if (useFasta ?? Parser.useFasta) {
return new _Parser2(source, errorListener);
} else {
- return new Parser._(source, errorListener);
+ return new Parser.withoutFasta(source, errorListener);
}
}
- Parser._(this._source, this._errorListener);
+ Parser.withoutFasta(this._source, this._errorListener);
/**
* Return the current token.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698