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

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

Issue 1348453004: fix some errors in our SDK, mostly around numbers (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « lib/runtime/dart/math.js ('k') | lib/src/checker/rules.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/_generators', 8 'dart_runtime/_generators',
9 'dart_runtime/_operations', 9 'dart_runtime/_operations',
10 'dart_runtime/_rtti', 10 'dart_runtime/_rtti',
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 exportFrom(dart_utils, ['copyProperties', 'export']); 67 exportFrom(dart_utils, ['copyProperties', 'export']);
68 // Renames 68 // Renames
69 exports.defineLazyClass = _export(dart_utils.defineLazy); 69 exports.defineLazyClass = _export(dart_utils.defineLazy);
70 exports.defineLazyProperties = _export(dart_utils.defineLazy); 70 exports.defineLazyProperties = _export(dart_utils.defineLazy);
71 exports.defineLazyClassGeneric = _export(dart_utils.defineLazyProperty); 71 exports.defineLazyClassGeneric = _export(dart_utils.defineLazyProperty);
72 72
73 // From operations 73 // From operations
74 exportFrom(operations, [ 74 exportFrom(operations, [
75 'JsIterator', 75 'JsIterator',
76 'arity', 76 'arity',
77 'asInt',
77 'assert', 78 'assert',
78 'const', 79 'const',
79 'dcall', 80 'dcall',
80 'dindex', 81 'dindex',
81 'dload', 82 'dload',
82 'dput', 83 'dput',
83 'dsend', 84 'dsend',
84 'dsetindex', 85 'dsetindex',
85 'equals', 86 'equals',
86 'hashCode', 87 'hashCode',
(...skipping 24 matching lines...) Expand all
111 ]); 112 ]);
112 113
113 // From rtti 114 // From rtti
114 exportFrom(rtti, [ 115 exportFrom(rtti, [
115 'fn', 116 'fn',
116 'realRuntimeType', 117 'realRuntimeType',
117 'runtimeType', 118 'runtimeType',
118 ]); 119 ]);
119 120
120 }); 121 });
OLDNEW
« no previous file with comments | « lib/runtime/dart/math.js ('k') | lib/src/checker/rules.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698