Index: src/weakmap.js |
diff --git a/src/weakmap.js b/src/weakmap.js |
index 70210b98de2d110b7781284ae20bf954d0c86993..4c61dc65e59ee032dc9b4ed095ad952497c6cc3c 100644 |
--- a/src/weakmap.js |
+++ b/src/weakmap.js |
@@ -87,6 +87,9 @@ function SetupWeakMap() { |
// Setup the WeakMap prototype object. |
%FunctionSetPrototype($WeakMap, new $WeakMap()); |
+ // Setup the constructor property on the WeakMap prototype object. |
Erik Corry
2011/08/30 09:13:01
Setup -> Set up
And 3 other places in this file.
Michael Starzinger
2011/08/30 09:34:41
Done.
|
+ %SetProperty($WeakMap.prototype, "constructor", $WeakMap, DONT_ENUM); |
+ |
// Setup the non-enumerable functions on the WeakMap prototype object. |
InstallFunctionsOnHiddenPrototype($WeakMap.prototype, DONT_ENUM, $Array( |
"get", WeakMapGet, |