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

Side by Side Diff: pkg/dev_compiler/test/codegen_expected/node_modules.js

Issue 2747513003: Inline source maps as part of each script. (Closed)
Patch Set: Inline source maps as part of each script. Created 3 years, 9 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 unified diff | Download patch
OLDNEW
1 (function() { 1 (function() {
2 'use strict'; 2 'use strict';
3 const dart_sdk = require('dart_sdk'); 3 const dart_sdk = require('dart_sdk');
4 const core = dart_sdk.core; 4 const core = dart_sdk.core;
5 const dart = dart_sdk.dart; 5 const dart = dart_sdk.dart;
6 const dartx = dart_sdk.dartx; 6 const dartx = dart_sdk.dartx;
7 const node_modules = Object.create(null); 7 const node_modules = Object.create(null);
8 let B = () => (B = dart.constFn(node_modules.B$()))(); 8 let B = () => (B = dart.constFn(node_modules.B$()))();
9 let _B = () => (_B = dart.constFn(node_modules._B$()))(); 9 let _B = () => (_B = dart.constFn(node_modules._B$()))();
10 let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionT ype(dart.dynamic, [])))(); 10 let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionT ype(dart.dynamic, [])))();
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 node_modules.mutable = "abc"; 43 node_modules.mutable = "abc";
44 dart.defineLazy(node_modules, { 44 dart.defineLazy(node_modules, {
45 get lazyMutable() { 45 get lazyMutable() {
46 return dart.fn(() => { 46 return dart.fn(() => {
47 core.print('lazyMutable'); 47 core.print('lazyMutable');
48 return "abc"; 48 return "abc";
49 }, VoidToString())(); 49 }, VoidToString())();
50 }, 50 },
51 set lazyMutable(_) {} 51 set lazyMutable(_) {}
52 }); 52 });
53 dart.trackLibraries("node_modules", {"node_modules.dart": node_modules}); 53 dart.trackLibraries("node_modules", {"node_modules.dart": node_modules}, null) ;
54 // Exports: 54 // Exports:
55 exports.node_modules = node_modules; 55 exports.node_modules = node_modules;
56 })(); 56 })();
OLDNEW
« no previous file with comments | « pkg/dev_compiler/test/codegen_expected/map_keys.js ('k') | pkg/dev_compiler/test/codegen_expected/script.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698