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

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

Issue 2685573002: Replace Backend with JavaScriptBackend. (Closed)
Patch Set: Updated cf. comment Created 3 years, 10 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/common/codegen.dart ('k') | pkg/compiler/lib/src/compiler.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/common/resolution.dart
diff --git a/pkg/compiler/lib/src/common/resolution.dart b/pkg/compiler/lib/src/common/resolution.dart
index 3f54e2ea1728d82537d1c47a040c4a68d2aa3407..3cf8de56ee7dde7dcc0b82c6ec2064d6f2c90392 100644
--- a/pkg/compiler/lib/src/common/resolution.dart
+++ b/pkg/compiler/lib/src/common/resolution.dart
@@ -26,6 +26,7 @@ import '../elements/elements.dart'
import '../elements/entities.dart';
import '../enqueue.dart' show ResolutionEnqueuer;
import '../id_generator.dart';
+import '../js_backend/backend.dart' show JavaScriptBackend;
import '../mirrors_used.dart';
import '../options.dart' show CompilerOptions;
import '../parser/element_listener.dart' show ScannerOptions;
@@ -218,7 +219,7 @@ abstract class ParsingContext {
ParserTask parser,
ScannerTask scanner,
PatchParserTask patchParser,
- Backend backend) = _ParsingContext;
+ JavaScriptBackend backend) = _ParsingContext;
DiagnosticReporter get reporter;
ParserTask get parser;
@@ -242,7 +243,7 @@ class _ParsingContext implements ParsingContext {
final ParserTask parser;
final ScannerTask scanner;
final PatchParserTask patchParser;
- final Backend backend;
+ final JavaScriptBackend backend;
_ParsingContext(
this.reporter, this.parser, this.scanner, this.patchParser, this.backend);
« no previous file with comments | « pkg/compiler/lib/src/common/codegen.dart ('k') | pkg/compiler/lib/src/compiler.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698