From e17d5bdb13c58c8ef42db26832928c002a91df16 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Sun, 7 Dec 2014 11:46:59 +1100 Subject: [PATCH] fix comments test in property name shorthand --- .../es6-property-name-shorthand/comments/expected.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/fixtures/transformation/es6-property-name-shorthand/comments/expected.js b/test/fixtures/transformation/es6-property-name-shorthand/comments/expected.js index 1368b53247..bb002dfed6 100644 --- a/test/fixtures/transformation/es6-property-name-shorthand/comments/expected.js +++ b/test/fixtures/transformation/es6-property-name-shorthand/comments/expected.js @@ -1,4 +1,6 @@ -const A = 'a'; -const o = { +"use strict"; + +var A = "a"; +var o = { A: A // comment };