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

Unified Diff: test/codegen/expect/domtest.js

Issue 1182653002: Refactor runtime into libraries, better type reps (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Eliminate top level libraries from loader Created 5 years, 6 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: test/codegen/expect/domtest.js
diff --git a/test/codegen/expect/domtest.js b/test/codegen/expect/domtest.js
index 767f1482ea304a61e9b4eb62aaa391a0ded67e35..c76bb1dc5c09f37dd1d713f9e2480684fa44ecec 100644
--- a/test/codegen/expect/domtest.js
+++ b/test/codegen/expect/domtest.js
@@ -1,8 +1,10 @@
-dart.library('domtest', null, /* Imports */[
+loader.library('domtest', null, /* Imports */[
+ "dart/dart_runtime",
+ "dart/dartx",
'sunflower/dom',
'dart/core'
], /* Lazy imports */[
-], function(exports, dom, core) {
+], function(exports, dart, dartx, dom, core) {
'use strict';
function testNativeIndexers() {
let nodes = dom.document.querySelector('body').childNodes;

Powered by Google App Engine
This is Rietveld 408576698