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

Unified Diff: dart/compiler/java/com/google/dart/compiler/backend/isolate/DartIsolateStubGenerator.java

Issue 9353015: Remove dartc optimizing backend. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix minor test issues 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: dart/compiler/java/com/google/dart/compiler/backend/isolate/DartIsolateStubGenerator.java
diff --git a/dart/compiler/java/com/google/dart/compiler/backend/isolate/DartIsolateStubGenerator.java b/dart/compiler/java/com/google/dart/compiler/backend/isolate/DartIsolateStubGenerator.java
index 4431338dd327b07698bfe4e9c63085b4908cc980..59e3cf5e58e00afeac4d078c591882269d18adfd 100644
--- a/dart/compiler/java/com/google/dart/compiler/backend/isolate/DartIsolateStubGenerator.java
+++ b/dart/compiler/java/com/google/dart/compiler/backend/isolate/DartIsolateStubGenerator.java
@@ -11,6 +11,7 @@ import java.util.Collection;
import java.util.List;
import java.util.Set;
+import com.google.dart.compiler.Backend;
import com.google.dart.compiler.DartCompilerContext;
import com.google.dart.compiler.DartSource;
import com.google.dart.compiler.LibrarySource;
@@ -26,13 +27,12 @@ import com.google.dart.compiler.ast.DartTypeNode;
import com.google.dart.compiler.ast.DartUnit;
import com.google.dart.compiler.ast.DartVisitor;
import com.google.dart.compiler.ast.LibraryUnit;
-import com.google.dart.compiler.backend.common.AbstractBackend;
import com.google.dart.compiler.resolver.CoreTypeProvider;
/**
* Generate code for proxies and dispatchers for cross-isolate calls.
*/
-public class DartIsolateStubGenerator extends AbstractBackend {
+public class DartIsolateStubGenerator implements Backend {
private final Set<String> stubInterfaces;
private PrintStream outStream;
@@ -838,12 +838,6 @@ public class DartIsolateStubGenerator extends AbstractBackend {
return null;
}
- @Override
- public String getSourceMapExtension() {
- // TODO Auto-generated method stub
- return null;
- }
-
private boolean printFunctionDeclaration(DartVisitor visitor, DartMethodDefinition x) {
if (isConstructor(x)) {
return false;

Powered by Google App Engine
This is Rietveld 408576698