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

Side by Side Diff: lib/runtime/dart/_js_mirrors.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/_js_helper.js ('k') | lib/runtime/dart/_js_primitives.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 dart_library.library('dart/_js_mirrors', null, /* Imports */[ 1 dart_library.library('dart/_js_mirrors', null, /* Imports */[
2 "dart_runtime/dart", 2 "dart/_runtime",
3 'dart/_internal', 3 'dart/_internal',
4 'dart/core', 4 'dart/core',
5 'dart/mirrors' 5 'dart/mirrors'
6 ], /* Lazy imports */[ 6 ], /* Lazy imports */[
7 ], function(exports, dart, _internal, core, mirrors) { 7 ], function(exports, dart, _internal, core, mirrors) {
8 'use strict'; 8 'use strict';
9 let dartx = dart.dartx; 9 let dartx = dart.dartx;
10 function getName(symbol) { 10 function getName(symbol) {
11 return _internal.Symbol.getName(dart.as(symbol, _internal.Symbol)); 11 return _internal.Symbol.getName(dart.as(symbol, _internal.Symbol));
12 } 12 }
(...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 exports.getName = getName; 442 exports.getName = getName;
443 exports.getSymbol = getSymbol; 443 exports.getSymbol = getSymbol;
444 exports.reflect = reflect; 444 exports.reflect = reflect;
445 exports.reflectType = reflectType; 445 exports.reflectType = reflectType;
446 exports.JsInstanceMirror = JsInstanceMirror; 446 exports.JsInstanceMirror = JsInstanceMirror;
447 exports.JsClassMirror = JsClassMirror; 447 exports.JsClassMirror = JsClassMirror;
448 exports.JsTypeMirror = JsTypeMirror; 448 exports.JsTypeMirror = JsTypeMirror;
449 exports.JsParameterMirror = JsParameterMirror; 449 exports.JsParameterMirror = JsParameterMirror;
450 exports.JsMethodMirror = JsMethodMirror; 450 exports.JsMethodMirror = JsMethodMirror;
451 }); 451 });
OLDNEW
« no previous file with comments | « lib/runtime/dart/_js_helper.js ('k') | lib/runtime/dart/_js_primitives.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698