| 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/_operations', | 8 'dart_runtime/_operations', |
| 9 'dart_runtime/_rtti', | 9 'dart_runtime/_rtti', |
| 10 'dart_runtime/_types', | 10 'dart_runtime/_types', |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 'dindex', | 72 'dindex', |
| 73 'dload', | 73 'dload', |
| 74 'dput', | 74 'dput', |
| 75 'dsend', | 75 'dsend', |
| 76 'dsetindex', | 76 'dsetindex', |
| 77 'equals', | 77 'equals', |
| 78 'hashCode', | 78 'hashCode', |
| 79 'map', | 79 'map', |
| 80 'noSuchMethod', | 80 'noSuchMethod', |
| 81 'notNull', | 81 'notNull', |
| 82 'stackPrint', |
| 82 'stackTrace', | 83 'stackTrace', |
| 83 'throw_', | 84 'throw', |
| 84 'toString', | 85 'toString', |
| 85 ]) | 86 ]) |
| 86 // Renames | 87 // Renames |
| 87 exports.as = _export(operations.cast); | 88 exports.as = _export(operations.cast); |
| 88 exports.is = _export(operations.instanceOf); | 89 exports.is = _export(operations.instanceOf); |
| 89 | 90 |
| 90 // From types | 91 // From types |
| 91 exportFrom(types, [ | 92 exportFrom(types, [ |
| 92 'bottom', | 93 'bottom', |
| 93 'definiteFunctionType', | 94 'definiteFunctionType', |
| 94 'dynamic', | 95 'dynamic', |
| 95 'functionType', | 96 'functionType', |
| 96 'typedef', | 97 'typedef', |
| 97 'typeName', | 98 'typeName', |
| 98 'void', | 99 'void', |
| 99 ]); | 100 ]); |
| 100 | 101 |
| 101 // From rtti | 102 // From rtti |
| 102 exportFrom(rtti, [ | 103 exportFrom(rtti, [ |
| 103 'fn', | 104 'fn', |
| 104 'realRuntimeType', | 105 'realRuntimeType', |
| 105 'runtimeType', | 106 'runtimeType', |
| 106 ]); | 107 ]); |
| 107 | 108 |
| 108 }); | 109 }); |
| OLD | NEW |