Skip to content

Commit ed8e22f

Browse files
jyameoCommit Queue
authored andcommitted
fixed bug, 'dartDeveloperLibrary()._extensions.keys' is not a function
Change-Id: I95a59575e3dfebf4e44008d171226994bb63ccba Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/399784 Commit-Queue: Srujan Gaddam <[email protected]> Reviewed-by: Srujan Gaddam <[email protected]> Commit-Queue: Jessy Yameogo <[email protected]>
1 parent 574e54d commit ed8e22f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/dev_compiler/lib/js/ddc/ddc_module_loader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1913,7 +1913,7 @@ if (!self.deferred_loader) {
19131913
* @returns {Array<string>} Array containing the extension names.
19141914
*/
19151915
get extensionNames() {
1916-
return dartDeveloperLibrary()._extensions.keys().toList();
1916+
return dartDeveloperLibrary()._extensions.keys.toList();
19171917
}
19181918

19191919
/**

0 commit comments

Comments
 (0)