Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(356)

Side by Side Diff: lib/runtime/dart_runtime.js

Issue 1186683005: dart:mirrors (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Address comments Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698