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

Unified Diff: pkg/dev_compiler/lib/js/legacy/dart_library.js

Issue 2965283002: fix libraries getter (Closed)
Patch Set: Created 3 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dev_compiler/lib/js/legacy/dart_library.js
diff --git a/pkg/dev_compiler/lib/js/legacy/dart_library.js b/pkg/dev_compiler/lib/js/legacy/dart_library.js
index 114149595130c37837c0dfb79eafda1e20d99379..defc96aec9d0806cd35d46022282e10ff9b26f79 100644
--- a/pkg/dev_compiler/lib/js/legacy/dart_library.js
+++ b/pkg/dev_compiler/lib/js/legacy/dart_library.js
@@ -137,7 +137,7 @@ dart_library =
// Map from name to LibraryLoader
let _libraries = new Map();
- dart_library.libraries = function() { return libraries.keys(); };
+ dart_library.libraries = function() { return _libraries.keys(); };
dart_library.debuggerLibraries = function() {
var debuggerLibraries = [];
_libraries.forEach(function (value, key, map) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698