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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 'dindex', | 80 'dindex', |
81 'dload', | 81 'dload', |
82 'dput', | 82 'dput', |
83 'dsend', | 83 'dsend', |
84 'dsetindex', | 84 'dsetindex', |
85 'equals', | 85 'equals', |
86 'hashCode', | 86 'hashCode', |
87 'map', | 87 'map', |
88 'noSuchMethod', | 88 'noSuchMethod', |
89 'notNull', | 89 'notNull', |
| 90 'nullSafe', |
90 'stackPrint', | 91 'stackPrint', |
91 'stackTrace', | 92 'stackTrace', |
92 'strongInstanceOf', | 93 'strongInstanceOf', |
93 'throw', | 94 'throw', |
94 'toString', | 95 'toString', |
95 ]) | 96 ]) |
96 // Renames | 97 // Renames |
97 exports.as = _export(operations.cast); | 98 exports.as = _export(operations.cast); |
98 exports.is = _export(operations.instanceOf); | 99 exports.is = _export(operations.instanceOf); |
99 | 100 |
(...skipping 10 matching lines...) Expand all Loading... |
110 ]); | 111 ]); |
111 | 112 |
112 // From rtti | 113 // From rtti |
113 exportFrom(rtti, [ | 114 exportFrom(rtti, [ |
114 'fn', | 115 'fn', |
115 'realRuntimeType', | 116 'realRuntimeType', |
116 'runtimeType', | 117 'runtimeType', |
117 ]); | 118 ]); |
118 | 119 |
119 }); | 120 }); |
OLD | NEW |