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

Side by Side Diff: lib/runtime/dart/_runtime.js

Issue 1413683006: Move runtime js files down to lib/runtime/dart (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 1 month 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/_rtti.js ('k') | lib/runtime/dart/_types.js » ('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', null, /* Imports */[
6 'dart_runtime/_classes', 6 'dart/_classes',
7 'dart_runtime/_errors', 7 'dart/_errors',
8 'dart_runtime/_generators', 8 'dart/_generators',
9 'dart_runtime/_operations', 9 'dart/_operations',
10 'dart_runtime/_rtti', 10 'dart/_rtti',
11 'dart_runtime/_types', 11 'dart/_types',
12 ], /* Lazy Imports */[ 12 ], /* Lazy Imports */[
13 'dart/_js_helper' 13 'dart/_js_helper'
14 ], function(exports, classes, errors, generators, operations, rtti, types, 14 ], function(exports, classes, errors, generators, operations, rtti, types,
15 _js_helper) { 15 _js_helper) {
16 'use strict'; 16 'use strict';
17 17
18 function _export(value) { 18 function _export(value) {
19 if (value) return value; 19 if (value) return value;
20 console.log("Re-exporting null field: " + name); 20 console.log("Re-exporting null field: " + name);
21 throw "Bad export"; 21 throw "Bad export";
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 ]); 112 ]);
113 113
114 // From rtti 114 // From rtti
115 exportFrom(rtti, [ 115 exportFrom(rtti, [
116 'fn', 116 'fn',
117 'realRuntimeType', 117 'realRuntimeType',
118 'runtimeType', 118 'runtimeType',
119 ]); 119 ]);
120 120
121 }); 121 });
OLDNEW
« no previous file with comments | « lib/runtime/dart/_rtti.js ('k') | lib/runtime/dart/_types.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698