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

Unified Diff: compiler/java/com/google/dart/compiler/DartCompiler.java

Issue 9384013: Remove DartIsolateStubGenerator. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
Index: compiler/java/com/google/dart/compiler/DartCompiler.java
diff --git a/compiler/java/com/google/dart/compiler/DartCompiler.java b/compiler/java/com/google/dart/compiler/DartCompiler.java
index 2528dc0ea655705a9276f7554d062c4286038710..8dd9e722ac0f124ae08f0b49456b9b8fa4562da0 100644
--- a/compiler/java/com/google/dart/compiler/DartCompiler.java
+++ b/compiler/java/com/google/dart/compiler/DartCompiler.java
@@ -998,13 +998,7 @@ public class DartCompiler {
return false;
}
- CompilerConfiguration config;
- if (compilerOptions.getIsolateStubClasses().isEmpty()) {
- config = new DefaultCompilerConfiguration(compilerOptions);
- } else {
- config = new DartIsolateStubGeneratorCompilerConfiguration(
- compilerOptions);
- }
+ CompilerConfiguration config = new DefaultCompilerConfiguration(compilerOptions);
return compilerMain(sourceFile, config);
}

Powered by Google App Engine
This is Rietveld 408576698