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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 'list', | 49 'list', |
50 'metadata', | 50 'metadata', |
51 'mixin', | 51 'mixin', |
52 'registerExtension', | 52 'registerExtension', |
53 'setBaseClass', | 53 'setBaseClass', |
54 'setSignature', | 54 'setSignature', |
55 'virtualField', | 55 'virtualField', |
56 ]) | 56 ]) |
57 | 57 |
58 // From dart_utils | 58 // From dart_utils |
59 exportFrom(dart_utils, ['copyProperties']); | 59 exportFrom(dart_utils, ['copyProperties', 'instantiate']); |
60 // Renames | 60 // Renames |
61 exports.defineLazyClass = _export(dart_utils.defineLazy); | 61 exports.defineLazyClass = _export(dart_utils.defineLazy); |
62 exports.defineLazyProperties = _export(dart_utils.defineLazy); | 62 exports.defineLazyProperties = _export(dart_utils.defineLazy); |
63 exports.defineLazyClassGeneric = _export(dart_utils.defineLazyProperty); | 63 exports.defineLazyClassGeneric = _export(dart_utils.defineLazyProperty); |
64 | 64 |
65 // From operations | 65 // From operations |
66 exportFrom(operations, [ | 66 exportFrom(operations, [ |
67 'JsIterator', | 67 'JsIterator', |
68 'arity', | 68 'arity', |
69 'assert', | 69 'assert', |
70 'const', | 70 'const', |
71 'dcall', | 71 'dcall', |
72 'dindex', | 72 'dindex', |
73 'dload', | 73 'dload', |
74 'dput', | 74 'dput', |
75 'dsend', | 75 'dsend', |
| 76 'dsendArray', |
76 'dsetindex', | 77 'dsetindex', |
77 'equals', | 78 'equals', |
78 'hashCode', | 79 'hashCode', |
79 'map', | 80 'map', |
80 'noSuchMethod', | 81 'noSuchMethod', |
81 'notNull', | 82 'notNull', |
82 'stackTrace', | 83 'stackTrace', |
83 'throw_', | 84 'throw_', |
84 'toString', | 85 'toString', |
85 ]) | 86 ]) |
(...skipping 12 matching lines...) Expand all Loading... |
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 |