Index: lib/runtime/dart/core.js |
diff --git a/lib/runtime/dart/core.js b/lib/runtime/dart/core.js |
index daddf32971428aaaf89bca72e5278b97c5943258..9893f751f5ff25aa34264d982448e2fe308217a3 100644 |
--- a/lib/runtime/dart/core.js |
+++ b/lib/runtime/dart/core.js |
@@ -68,6 +68,9 @@ dart.library('dart/core', null, /* Imports */[ |
constructors: () => ({_Proxy: [_Proxy, []]}) |
}); |
let proxy = dart.const(new _Proxy()); |
+ dart.defineExtensionNames([ |
+ 'toString' |
+ ]); |
class bool extends Object { |
static fromEnvironment(name, opts) { |
let defaultValue = opts && 'defaultValue' in opts ? opts.defaultValue : false; |
@@ -1254,6 +1257,9 @@ dart.library('dart/core', null, /* Imports */[ |
} |
} |
let Iterable$ = dart.generic(function(E) { |
+ dart.defineExtensionNames([ |
+ 'join' |
+ ]); |
class Iterable extends Object { |
Iterable() { |
} |