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

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

Issue 2521073003: Remove the ability in dart2js to turn off syntax-only generic methods. (Closed)
Patch Set: eernst Created 4 years, 1 month 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/common/resolution.dart ('k') | pkg/compiler/lib/src/dart2js.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/compiler.dart
diff --git a/pkg/compiler/lib/src/compiler.dart b/pkg/compiler/lib/src/compiler.dart
index c7bdcdf6191a3a88555adec831f84472a405456d..7b4d9cebc468df074be5285f5780ea0288ed1086 100644
--- a/pkg/compiler/lib/src/compiler.dart
+++ b/pkg/compiler/lib/src/compiler.dart
@@ -257,7 +257,7 @@ abstract class Compiler implements LibraryLoaderListener {
tasks = [
dietParser =
- new DietParserTask(options, idGenerator, backend, reporter, measurer),
+ new DietParserTask(idGenerator, backend, reporter, measurer),
scanner = createScannerTask(),
serialization = new SerializationTask(this),
libraryLoader = new LibraryLoaderTask(
@@ -271,8 +271,8 @@ abstract class Compiler implements LibraryLoaderListener {
environment,
reporter,
measurer),
- parser = new ParserTask(this, options),
- patchParser = new PatchParserTask(this, options),
+ parser = new ParserTask(this),
+ patchParser = new PatchParserTask(this),
resolver = createResolverTask(),
closureToClassMapper = new closureMapping.ClosureTask(this),
checker = new TypeCheckerTask(this),
@@ -291,7 +291,7 @@ abstract class Compiler implements LibraryLoaderListener {
}
_parsingContext =
- new ParsingContext(reporter, options, parser, patchParser, backend);
+ new ParsingContext(reporter, parser, patchParser, backend);
tasks.addAll(backend.tasks);
}
« no previous file with comments | « pkg/compiler/lib/src/common/resolution.dart ('k') | pkg/compiler/lib/src/dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698