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

Unified Diff: lib/runtime/dart/mirrors.js

Issue 1700153002: Wrapperless dart:html and friends (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: A couple more tweaks Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/runtime/dart/math.js ('k') | lib/runtime/dart/svg.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/mirrors.js
diff --git a/lib/runtime/dart/mirrors.js b/lib/runtime/dart/mirrors.js
index ceb5ad8e56056bcfaec6d26a5153899ac6fe1f00..55172d2f4ea2965405f4fb38bb7080cce78a086f 100644
--- a/lib/runtime/dart/mirrors.js
+++ b/lib/runtime/dart/mirrors.js
@@ -8,7 +8,7 @@ dart_library.library('dart/mirrors', null, /* Imports */[
let dartx = dart.dartx;
class MirrorSystem extends core.Object {
findLibrary(libraryName) {
- return this.libraries.values[dartx.singleWhere](dart.fn(library => dart.equals(library.simpleName, libraryName), core.bool, [LibraryMirror]));
+ return this.libraries[dartx.values][dartx.singleWhere](dart.fn(library => dart.equals(library.simpleName, libraryName), core.bool, [LibraryMirror]));
}
static getName(symbol) {
return _js_mirrors.getName(symbol);
« no previous file with comments | « lib/runtime/dart/math.js ('k') | lib/runtime/dart/svg.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698