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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 'throw_', | 83 'throw_', |
84 'toString', | 84 'toString', |
85 ]) | 85 ]) |
86 // Renames | 86 // Renames |
87 exports.as = _export(operations.cast); | 87 exports.as = _export(operations.cast); |
88 exports.is = _export(operations.instanceOf); | 88 exports.is = _export(operations.instanceOf); |
89 | 89 |
90 // From types | 90 // From types |
91 exportFrom(types, [ | 91 exportFrom(types, [ |
92 'bottom', | 92 'bottom', |
| 93 'definiteFunctionType', |
93 'dynamic', | 94 'dynamic', |
94 'functionType', | 95 'functionType', |
95 'typedef', | 96 'typedef', |
96 'typeName', | 97 'typeName', |
97 'void', | 98 'void', |
98 ]); | 99 ]); |
99 | 100 |
100 // From rtti | 101 // From rtti |
101 exportFrom(rtti, [ | 102 exportFrom(rtti, [ |
102 'fn', | 103 'fn', |
103 'realRuntimeType', | 104 'realRuntimeType', |
104 'runtimeType', | 105 'runtimeType', |
105 ]); | 106 ]); |
106 | 107 |
107 }); | 108 }); |
OLD | NEW |