| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 dart_library.library('dart_runtime/dart', null, /* Imports */[ | 5 dart_library.library('dart/_runtime', null, /* Imports */[ |
| 6 'dart_runtime/_classes', | 6 'dart/_classes', |
| 7 'dart_runtime/_errors', | 7 'dart/_errors', |
| 8 'dart_runtime/_generators', | 8 'dart/_generators', |
| 9 'dart_runtime/_operations', | 9 'dart/_operations', |
| 10 'dart_runtime/_rtti', | 10 'dart/_rtti', |
| 11 'dart_runtime/_types', | 11 'dart/_types', |
| 12 ], /* Lazy Imports */[ | 12 ], /* Lazy Imports */[ |
| 13 'dart/_js_helper' | 13 'dart/_js_helper' |
| 14 ], function(exports, classes, errors, generators, operations, rtti, types, | 14 ], function(exports, classes, errors, generators, operations, rtti, types, |
| 15 _js_helper) { | 15 _js_helper) { |
| 16 'use strict'; | 16 'use strict'; |
| 17 | 17 |
| 18 function _export(value) { | 18 function _export(value) { |
| 19 if (value) return value; | 19 if (value) return value; |
| 20 console.log("Re-exporting null field: " + name); | 20 console.log("Re-exporting null field: " + name); |
| 21 throw "Bad export"; | 21 throw "Bad export"; |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 ]); | 112 ]); |
| 113 | 113 |
| 114 // From rtti | 114 // From rtti |
| 115 exportFrom(rtti, [ | 115 exportFrom(rtti, [ |
| 116 'fn', | 116 'fn', |
| 117 'realRuntimeType', | 117 'realRuntimeType', |
| 118 'runtimeType', | 118 'runtimeType', |
| 119 ]); | 119 ]); |
| 120 | 120 |
| 121 }); | 121 }); |
| OLD | NEW |