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

Unified Diff: lib/compiler/implementation/js/js.dart

Issue 10825180: Add JavaScript AST. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Cosmetic changes (comments). Created 8 years, 4 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 | « no previous file | lib/compiler/implementation/js/nodes.dart » ('j') | lib/compiler/implementation/js/nodes.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/js/js.dart
diff --git a/lib/compiler/implementation/js/js.dart b/lib/compiler/implementation/js/js.dart
new file mode 100644
index 0000000000000000000000000000000000000000..433352ff4ae1ad5ea75aa724b4392f7231e2b84f
--- /dev/null
+++ b/lib/compiler/implementation/js/js.dart
@@ -0,0 +1,15 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+#library('js');
+
+#import("precedence.dart");
+#import("../util/characters.dart", prefix: "charCodes");
+
+// TODO(floitsch): remove this dependency (currently necessary for the
+// CodeBuffer).
+#import('../leg.dart', prefix: "leg");
+
+#source('nodes.dart');
+#source('printer.dart');
« no previous file with comments | « no previous file | lib/compiler/implementation/js/nodes.dart » ('j') | lib/compiler/implementation/js/nodes.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698