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

Unified Diff: test/codegen/expect/sunflower/dom.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/sunflower/circle.js ('k') | test/codegen/expect/sunflower/painter.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/sunflower/dom.js
diff --git a/test/codegen/expect/sunflower/dom.js b/test/codegen/expect/sunflower/dom.js
index 81ac62a0368032da1940fdc776b6c4f08204c1fe..51474927d0c14aba5e05120841152cbb4f401862 100644
--- a/test/codegen/expect/sunflower/dom.js
+++ b/test/codegen/expect/sunflower/dom.js
@@ -1,8 +1,10 @@
-dart.library('dom', window, /* Imports */[
+dart_library.library('dom', window, /* Imports */[
+ "dart_runtime/dart",
'dart/core'
], /* Lazy imports */[
-], function(exports, core) {
+], function(exports, dart, core) {
'use strict';
+ let dartx = dart.dartx;
class JsName extends core.Object {
JsName(opts) {
let name = opts && 'name' in opts ? opts.name : null;
« no previous file with comments | « test/codegen/expect/sunflower/circle.js ('k') | test/codegen/expect/sunflower/painter.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698