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

Unified Diff: pkg/dev_compiler/test/codegen_expected/node_modules.js

Issue 2701963002: Enable DDC output to run on v8/d8 using ES6 modules (Closed)
Patch Set: Created 3 years, 10 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: pkg/dev_compiler/test/codegen_expected/node_modules.js
diff --git a/pkg/dev_compiler/test/codegen_expected/node_modules.js b/pkg/dev_compiler/test/codegen_expected/node_modules.js
index 22813783593d461650d37a26311437e7587e3670..5a7fa95c7c909563a2ce537172e50e11b09605f8 100644
--- a/pkg/dev_compiler/test/codegen_expected/node_modules.js
+++ b/pkg/dev_compiler/test/codegen_expected/node_modules.js
@@ -1,55 +1,53 @@
-(function() {
- 'use strict';
- const dart_sdk = require('dart_sdk');
- const core = dart_sdk.core;
- const dart = dart_sdk.dart;
- const dartx = dart_sdk.dartx;
- const node_modules = Object.create(null);
- let B = () => (B = dart.constFn(node_modules.B$()))();
- let _B = () => (_B = dart.constFn(node_modules._B$()))();
- let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
- let VoidToString = () => (VoidToString = dart.constFn(dart.definiteFunctionType(core.String, [])))();
- node_modules.Callback = dart.typedef('Callback', () => dart.functionType(dart.void, [], {i: core.int}));
- node_modules.A = class A extends core.Object {};
- node_modules._A = class _A extends core.Object {};
- node_modules.B$ = dart.generic(T => {
- class B extends core.Object {}
- dart.addTypeTests(B);
- return B;
- });
- node_modules.B = B();
- node_modules._B$ = dart.generic(T => {
- class _B extends core.Object {}
- dart.addTypeTests(_B);
- return _B;
- });
- node_modules._B = _B();
- node_modules.f = function() {
- };
- dart.fn(node_modules.f, VoidTodynamic());
- node_modules._f = function() {
- };
- dart.fn(node_modules._f, VoidTodynamic());
- node_modules.constant = "abc";
- node_modules.finalConstant = "abc";
- dart.defineLazy(node_modules, {
- get lazy() {
- return dart.fn(() => {
- core.print('lazy');
- return "abc";
- }, VoidToString())();
- }
- });
- node_modules.mutable = "abc";
- dart.defineLazy(node_modules, {
- get lazyMutable() {
- return dart.fn(() => {
- core.print('lazyMutable');
- return "abc";
- }, VoidToString())();
- },
- set lazyMutable(_) {}
- });
- // Exports:
- exports.node_modules = node_modules;
-})();
+'use strict';
+const dart_sdk = require('dart_sdk');
+const core = dart_sdk.core;
+const dart = dart_sdk.dart;
+const dartx = dart_sdk.dartx;
+const node_modules = Object.create(null);
+let B = () => (B = dart.constFn(node_modules.B$()))();
+let _B = () => (_B = dart.constFn(node_modules._B$()))();
+let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
+let VoidToString = () => (VoidToString = dart.constFn(dart.definiteFunctionType(core.String, [])))();
+node_modules.Callback = dart.typedef('Callback', () => dart.functionType(dart.void, [], {i: core.int}));
+node_modules.A = class A extends core.Object {};
+node_modules._A = class _A extends core.Object {};
+node_modules.B$ = dart.generic(T => {
+ class B extends core.Object {}
+ dart.addTypeTests(B);
+ return B;
+});
+node_modules.B = B();
+node_modules._B$ = dart.generic(T => {
+ class _B extends core.Object {}
+ dart.addTypeTests(_B);
+ return _B;
+});
+node_modules._B = _B();
+node_modules.f = function() {
+};
+dart.fn(node_modules.f, VoidTodynamic());
+node_modules._f = function() {
+};
+dart.fn(node_modules._f, VoidTodynamic());
+node_modules.constant = "abc";
+node_modules.finalConstant = "abc";
+dart.defineLazy(node_modules, {
+ get lazy() {
+ return dart.fn(() => {
+ core.print('lazy');
+ return "abc";
+ }, VoidToString())();
+ }
+});
+node_modules.mutable = "abc";
+dart.defineLazy(node_modules, {
+ get lazyMutable() {
+ return dart.fn(() => {
+ core.print('lazyMutable');
+ return "abc";
+ }, VoidToString())();
+ },
+ set lazyMutable(_) {}
+});
+// Exports:
+exports.node_modules = node_modules;

Powered by Google App Engine
This is Rietveld 408576698