Turn on playground for "obj ?= 2"

Without it fail with different issue, doesn’t connected to real case:
`Got error message: Unexpected token (1:5)`.
This commit is contained in:
Sasha Koss 2015-01-16 20:09:07 +05:30
parent f3299fa88d
commit ff769780ea

View File

@ -197,7 +197,9 @@ test("var foo = { memo bar() {} };",
// Memoization assignment operator
testFail("obj ?= 2;", "You can only use member expressions in memoization assignment (1:0)");
testFail("obj ?= 2;", "You can only use member expressions in memoization assignment (1:0)", {
playground: true
});
test("obj.x ?= 2;", {
type: "Program",