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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCore.java

Issue 9479013: Remove backends. (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: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCore.java
diff --git a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCore.java b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCore.java
index 8dc73a50151a408af34b6f1bdc73e767b005ce17..be5d7767e1620d4a79ba2cdeebb5350eea9e7e6d 100644
--- a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCore.java
+++ b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/DartCore.java
@@ -104,6 +104,16 @@ public class DartCore extends Plugin {
public static final String DART_PROBLEM_MARKER_TYPE = PLUGIN_ID + ".problem";
/**
+ * Extension for single unit compiled into JavaScript.
+ */
+ public static final String EXTENSION_JS = "js";
Brian Wilkerson 2012/02/27 20:47:03 I believe that these two constants should eventual
scheglov 2012/02/29 22:46:41 I've added @Deprecated for EXTENSION_JS. EXTENSIO
+
+ /**
+ * Extension for application compiled into JavaScript.
+ */
+ public static final String EXTENSION_APP_JS = "app.js";
+
+ /**
* Cached extensions for CSS files.
*/
private static final String[] CSS_FILE_EXTENSIONS = {"css"};

Powered by Google App Engine
This is Rietveld 408576698