| OLD | NEW |
| 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 Loading... |
| 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 })(); |
| OLD | NEW |