From 04c64c4592ac5d76fafbaaa521a1dbfe4e009bbf Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Fri, 13 Feb 2015 15:04:33 +1100 Subject: [PATCH] remove this shorthand playground tests --- test/tests-6to5-playground.js | 68 ----------------------------------- 1 file changed, 68 deletions(-) diff --git a/test/tests-6to5-playground.js b/test/tests-6to5-playground.js index 75fd07d017..a6023919fe 100644 --- a/test/tests-6to5-playground.js +++ b/test/tests-6to5-playground.js @@ -4,74 +4,6 @@ if (typeof exports != "undefined") { var testAssert = require("./driver.js").testAssert; } -// This shorthand - -test("@foo", { - "type": "Program", - "start": 0, - "end": 4, - "body": [ - { - "type": "ExpressionStatement", - "start": 0, - "end": 4, - "expression": { - "type": "MemberExpression", - "start": 0, - "end": 4, - "object": { - "type": "ThisExpression" - }, - "property": { - "type": "Identifier", - "start": 1, - "end": 4, - "name": "foo" - }, - "computed": false - } - } - ] -}, { - playground: true -}); - -test("@foo();", { - "type": "Program", - "start": 0, - "end": 7, - "body": [ - { - "type": "ExpressionStatement", - "start": 0, - "end": 7, - "expression": { - "type": "MemberExpression", - "start": 0, - "end": 6, - "object": { - "type": "ThisExpression" - }, - "property": { - "type": "CallExpression", - "start": 0, - "end": 6, - "callee": { - "type": "Identifier", - "start": 1, - "end": 4, - "name": "foo" - }, - "arguments": [] - }, - "computed": false - } - } - ] -}, { - playground: true -}); - // Object getter memoisation test("class Foo { memo bar() {} }", {