Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 dart_library.library('hello', null, /* Imports */[ | |
| 2 'dart_sdk' | |
| 3 ], function(exports, dart_sdk) { | |
| 4 'use strict'; | |
| 5 const core = dart_sdk.core; | |
| 6 const dart = dart_sdk.dart; | |
| 7 const dartx = dart_sdk.dartx; | |
| 8 const hello = Object.create(null); | |
| 9 hello.main = function() { | |
| 10 return core.print('hello!'); | |
| 11 }; | |
| 12 dart.fn(hello.main); | |
| 13 // Exports: | |
| 14 exports.hello = hello; | |
| 15 }); | |
| 16 | |
| 17 //# sourceMappingURL=hello.js.map | |
| OLD | NEW |