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

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

Issue 10825386: Use JavaScript runtime semantics when constant folding. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove top-level constanst. 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
Index: lib/compiler/implementation/apiimpl.dart
diff --git a/lib/compiler/implementation/apiimpl.dart b/lib/compiler/implementation/apiimpl.dart
index 73a2ab718ac82568a2e2cbad373af6624bf0fd2b..1fe734606dbeae8b0b307e523d50b008238abad9 100644
--- a/lib/compiler/implementation/apiimpl.dart
+++ b/lib/compiler/implementation/apiimpl.dart
@@ -29,7 +29,7 @@ class Compiler extends leg.Compiler {
tracer: new ssa.HTracer(),
enableTypeAssertions: options.indexOf('--enable-checked-mode') != -1,
enableUserAssertions: options.indexOf('--enable-checked-mode') != -1,
- emitJavascript: options.indexOf('--output-type=dart') == -1,
+ emitJavaScript: options.indexOf('--output-type=dart') == -1,
validateUnparse: options.indexOf('--unparse-validation') !== -1);
elements.LibraryElement scanBuiltinLibrary(String path) {

Powered by Google App Engine
This is Rietveld 408576698