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

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

Issue 2128353002: Check in codegen test expectations. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 5 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/destructuring.js ('k') | test/codegen/expect/expect.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/es6_modules.js
diff --git a/test/codegen/expect/es6_modules.js b/test/codegen/expect/es6_modules.js
new file mode 100644
index 0000000000000000000000000000000000000000..8f76e89a251e152e76a352969d981aab21a0ed91
--- /dev/null
+++ b/test/codegen/expect/es6_modules.js
@@ -0,0 +1,47 @@
+export const es6_modules = Object.create(null);
+import { core, dart, dartx } from 'dart_sdk';
+let B = () => (B = dart.constFn(es6_modules.B$()))();
+let _B = () => (_B = dart.constFn(es6_modules._B$()))();
+let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
+let VoidToString = () => (VoidToString = dart.constFn(dart.definiteFunctionType(core.String, [])))();
+es6_modules.Callback = dart.typedef('Callback', () => dart.functionType(dart.void, [], {i: core.int}));
+es6_modules.A = class A extends core.Object {};
+es6_modules._A = class _A extends core.Object {};
+es6_modules.B$ = dart.generic(T => {
+ class B extends core.Object {}
+ dart.addTypeTests(B);
+ return B;
+});
+es6_modules.B = B();
+es6_modules._B$ = dart.generic(T => {
+ class _B extends core.Object {}
+ dart.addTypeTests(_B);
+ return _B;
+});
+es6_modules._B = _B();
+es6_modules.f = function() {
+};
+dart.fn(es6_modules.f, VoidTodynamic());
+es6_modules._f = function() {
+};
+dart.fn(es6_modules._f, VoidTodynamic());
+es6_modules.constant = "abc";
+es6_modules.finalConstant = "abc";
+dart.defineLazy(es6_modules, {
+ get lazy() {
+ return dart.fn(() => {
+ core.print('lazy');
+ return "abc";
+ }, VoidToString())();
+ }
+});
+es6_modules.mutable = "abc";
+dart.defineLazy(es6_modules, {
+ get lazyMutable() {
+ return dart.fn(() => {
+ core.print('lazyMutable');
+ return "abc";
+ }, VoidToString())();
+ },
+ set lazyMutable(_) {}
+});
« no previous file with comments | « test/codegen/expect/destructuring.js ('k') | test/codegen/expect/expect.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698