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

Unified Diff: compiler/javatests/com/google/dart/compiler/backend/js/JsBackendTests.java

Issue 9346021: Turn off code generation in dartc by default, soon to be static analysis only (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Feedback from scheglov 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/javatests/com/google/dart/compiler/backend/js/JsBackendTests.java
diff --git a/compiler/javatests/com/google/dart/compiler/backend/js/JsBackendTests.java b/compiler/javatests/com/google/dart/compiler/backend/js/JsBackendTests.java
index d7732b16ddb2dcc6bf48bba676defe627d2c9d15..4b62673a20610264f3246b0f278325d940cd4613 100644
--- a/compiler/javatests/com/google/dart/compiler/backend/js/JsBackendTests.java
+++ b/compiler/javatests/com/google/dart/compiler/backend/js/JsBackendTests.java
@@ -3,12 +3,11 @@
// BSD-style license that can be found in the LICENSE file.
package com.google.dart.compiler.backend.js;
-import com.google.dart.compiler.backend.common.TypeHeuristicImplementationTest;
-
import junit.extensions.TestSetup;
import junit.framework.Test;
import junit.framework.TestSuite;
+// TODO(zundel): Remove this suite when code generation is removed.
public class JsBackendTests extends TestSetup {
public JsBackendTests(TestSuite test) {
super(test);
@@ -16,21 +15,6 @@ public class JsBackendTests extends TestSetup {
public static Test suite() {
TestSuite suite = new TestSuite("Dart Javascript backend test suite.");
- suite.addTestSuite(JavaScriptStringTest.class);
- //suite.addTestSuite(JsParserTest.class);
- //suite.addTestSuite(JsToStringGenerationVisitorAccuracyTest.class);
- //suite.addTestSuite(JsToStringGenerationVisitorConcisenessTest.class);
- suite.addTestSuite(JsArrayExprOptTest.class);
- suite.addTestSuite(JsBinaryExprOptTest.class);
- suite.addTestSuite(JsClosureExprOptTest.class);
- suite.addTestSuite(JsCompoundBinaryExprOptTest.class);
- suite.addTestSuite(JsConstExprOptTest.class);
- suite.addTestSuite(JsConstructorOptTest.class);
- suite.addTestSuite(JsFieldAccessOptTest.class);
- suite.addTestSuite(JsScopeTest.class);
- suite.addTestSuite(JsUnaryExprOptTest.class);
- suite.addTestSuite(RttTest.class);
- suite.addTestSuite(TypeHeuristicImplementationTest.class);
return new JsBackendTests(suite);
}
}

Powered by Google App Engine
This is Rietveld 408576698