fix automatic closure on private declarations - fixes #335
This commit is contained in:
@@ -2,13 +2,13 @@
|
||||
|
||||
var A = new WeakMap();
|
||||
var B = new WeakMap(), C = new WeakMap();
|
||||
(function () {
|
||||
var D = (function () {
|
||||
var F = new WeakMap(), G = new WeakMap();
|
||||
var E = new WeakMap();
|
||||
var D = function D() {};
|
||||
|
||||
return D;
|
||||
})()
|
||||
})();
|
||||
|
||||
var H = (function () {
|
||||
var J = new WeakMap(), K = new WeakMap();
|
||||
|
||||
Reference in New Issue
Block a user