| 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/dart', null, /* Imports */[ |
| 6 'dart_runtime/_classes', | 6 'dart_runtime/_classes', |
| 7 'dart_runtime/_errors', | 7 'dart_runtime/_errors', |
| 8 'dart_runtime/_generators', | 8 'dart_runtime/_generators', |
| 9 'dart_runtime/_operations', | 9 'dart_runtime/_operations', |
| 10 'dart_runtime/_rtti', | 10 'dart_runtime/_rtti', |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 exportFrom(dart_utils, ['copyProperties', 'export']); | 67 exportFrom(dart_utils, ['copyProperties', 'export']); |
| 68 // Renames | 68 // Renames |
| 69 exports.defineLazyClass = _export(dart_utils.defineLazy); | 69 exports.defineLazyClass = _export(dart_utils.defineLazy); |
| 70 exports.defineLazyProperties = _export(dart_utils.defineLazy); | 70 exports.defineLazyProperties = _export(dart_utils.defineLazy); |
| 71 exports.defineLazyClassGeneric = _export(dart_utils.defineLazyProperty); | 71 exports.defineLazyClassGeneric = _export(dart_utils.defineLazyProperty); |
| 72 | 72 |
| 73 // From operations | 73 // From operations |
| 74 exportFrom(operations, [ | 74 exportFrom(operations, [ |
| 75 'JsIterator', | 75 'JsIterator', |
| 76 'arity', | 76 'arity', |
| 77 'asInt', |
| 77 'assert', | 78 'assert', |
| 78 'const', | 79 'const', |
| 79 'dcall', | 80 'dcall', |
| 80 'dindex', | 81 'dindex', |
| 81 'dload', | 82 'dload', |
| 82 'dput', | 83 'dput', |
| 83 'dsend', | 84 'dsend', |
| 84 'dsetindex', | 85 'dsetindex', |
| 85 'equals', | 86 'equals', |
| 86 'hashCode', | 87 'hashCode', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 111 ]); | 112 ]); |
| 112 | 113 |
| 113 // From rtti | 114 // From rtti |
| 114 exportFrom(rtti, [ | 115 exportFrom(rtti, [ |
| 115 'fn', | 116 'fn', |
| 116 'realRuntimeType', | 117 'realRuntimeType', |
| 117 'runtimeType', | 118 'runtimeType', |
| 118 ]); | 119 ]); |
| 119 | 120 |
| 120 }); | 121 }); |
| OLD | NEW |