From 6f5270f38f7aa0585d99b9e760d53c7f634e1236 Mon Sep 17 00:00:00 2001 From: Christopher Monsanto Date: Mon, 12 Jan 2015 14:00:43 -0500 Subject: [PATCH] remove Dict from core aliasable constructors --- lib/6to5/transformation/transformers/optional-core-aliasing.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/6to5/transformation/transformers/optional-core-aliasing.js b/lib/6to5/transformation/transformers/optional-core-aliasing.js index 6f97bd2c99..3610ae8f62 100644 --- a/lib/6to5/transformation/transformers/optional-core-aliasing.js +++ b/lib/6to5/transformation/transformers/optional-core-aliasing.js @@ -14,8 +14,7 @@ var ALIASABLE_CONSTRUCTORS = [ "Map", "WeakMap", "Set", - "WeakSet", - "Dict", + "WeakSet" ]; exports.optional = true;