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

Unified Diff: lib/js/legacy/dart_sdk.js

Side-by-side diff isn't available for this file because of its large size.
Issue 2249233002: fix #626, add AMD module format and make it default (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: fix tests and other changes Created 4 years, 3 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:
Download patch
Index: lib/js/legacy/dart_sdk.js
diff --git a/lib/runtime/dart_sdk.js b/lib/js/legacy/dart_sdk.js
similarity index 99%
rename from lib/runtime/dart_sdk.js
rename to lib/js/legacy/dart_sdk.js
index 67c5d7ae92bbaef82a1f9882d59d2ee543cdcc1d..45d6dc48fe04057a3c578ad27e1685123a0e0181 100644
--- a/lib/runtime/dart_sdk.js
+++ b/lib/js/legacy/dart_sdk.js
@@ -1464,7 +1464,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
let src = '';
for (let i = 2; i < dart.notNull(stack[dartx.length]); ++i) {
let frame = stack[dartx.get](i);
- if (!dart.test(frame[dartx.contains]('dev_compiler/lib/runtime/dart_sdk.js'))) {
+ if (!dart.test(frame[dartx.contains]('dart_sdk.js'))) {
src = frame;
break;
}

Powered by Google App Engine
This is Rietveld 408576698