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

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

Issue 1879373004: Implement modular compilation (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 8 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/names.txt ('k') | test/codegen/expect/node_modules.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/node_modules.js
diff --git a/test/codegen/expect/node_modules.js b/test/codegen/expect/node_modules.js
index 3b5f99e26486bc20ee9d094f5494c16c8f8919ad..ad9a93a7c160f02945911772460eb8a1bcb003db 100644
--- a/test/codegen/expect/node_modules.js
+++ b/test/codegen/expect/node_modules.js
@@ -1,50 +1 @@
'use strict';
-let dart = require("dart/_runtime");
-let core = require("dart/core");
-let dartx = dart.dartx;
-const Callback = dart.typedef('Callback', () => dart.functionType(dart.void, [], {i: core.int}));
-class A extends core.Object {}
-class _A extends core.Object {}
-const B$ = dart.generic(function(T) {
- class B extends core.Object {}
- return B;
-});
-let B = B$();
-const _B$ = dart.generic(function(T) {
- class _B extends core.Object {}
- return _B;
-});
-let _B = _B$();
-function f() {
-}
-dart.fn(f);
-function _f() {
-}
-dart.fn(_f);
-const constant = "abc";
-exports.finalConstant = "abc";
-dart.defineLazyProperties(exports, {
- get lazy() {
- return dart.fn(() => {
- core.print('lazy');
- return "abc";
- }, core.String, [])();
- }
-});
-exports.mutable = "abc";
-dart.defineLazyProperties(exports, {
- get lazyMutable() {
- return dart.fn(() => {
- core.print('lazyMutable');
- return "abc";
- }, core.String, [])();
- },
- set lazyMutable(_) {}
-});
-// Exports:
-exports.Callback = Callback;
-exports.A = A;
-exports.B$ = B$;
-exports.B = B;
-exports.f = f;
-exports.constant = constant;
« no previous file with comments | « test/codegen/expect/names.txt ('k') | test/codegen/expect/node_modules.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698