From d12082bfdf62c8bdf8a7a71428c77e7c784ebab3 Mon Sep 17 00:00:00 2001 From: Andy Date: Mon, 7 May 2018 11:49:41 -0700 Subject: [PATCH] core-js: Comment out dict[sym] test (#25420) --- types/core-js/core-js-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/core-js/core-js-tests.ts b/types/core-js/core-js-tests.ts index ab11eab409..476c97348f 100644 --- a/types/core-js/core-js-tests.ts +++ b/types/core-js/core-js-tests.ts @@ -418,7 +418,7 @@ log.disable(); // Non-standard point = dictOfPoint[s]; point = dictOfPoint[i]; -point = dictOfPoint[sym]; +// point = dictOfPoint[sym]; dictOfPoint = new Dict(dictOfPoint); dictOfAny = new Dict(point); dictOfPoint = Dict(dictOfPoint);