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

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: Address comments 2 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
« no previous file with comments | « test/codegen/expect/dir/html_input_e.js ('k') | test/codegen/expect/fieldtest.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/domtest.js
diff --git a/test/codegen/expect/domtest.js b/test/codegen/expect/domtest.js
index 767f1482ea304a61e9b4eb62aaa391a0ded67e35..aad27627901b6530ea858207e6e99698efb02598 100644
--- a/test/codegen/expect/domtest.js
+++ b/test/codegen/expect/domtest.js
@@ -1,9 +1,11 @@
-dart.library('domtest', null, /* Imports */[
+dart_library.library('domtest', null, /* Imports */[
+ "dart_runtime/dart",
'sunflower/dom',
'dart/core'
], /* Lazy imports */[
-], function(exports, dom, core) {
+], function(exports, dart, dom, core) {
'use strict';
+ let dartx = dart.dartx;
function testNativeIndexers() {
let nodes = dom.document.querySelector('body').childNodes;
for (let i = 0; dart.notNull(i) < dart.notNull(nodes.length); i = dart.notNull(i) + 1) {
« no previous file with comments | « test/codegen/expect/dir/html_input_e.js ('k') | test/codegen/expect/fieldtest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698