Move short-hand property tests to conformace folder

This commit is contained in:
Yui T 2014-11-11 11:30:16 -08:00
parent 1bf7ecac7a
commit 680999fe3f
4 changed files with 0 additions and 54 deletions

View File

@ -1,19 +0,0 @@
var a, b, c;
var x1 = {
a
};
var x2 = {
a,
}
var x3 = {
a: 0,
b,
c,
d() { },
x3,
parent: x3
};

View File

@ -1,18 +0,0 @@
// errors
var y = {
"stringLiteral",
42,
get e,
set f,
this,
super,
var,
class,
typeof
};
var x = {
a.b,
a["ss"],
a[1],
};

View File

@ -1,13 +0,0 @@
// module export
module m {
export var x;
}
module m {
var z = x;
var y = {
a: x,
x
};
}

View File

@ -1,4 +0,0 @@
var x = {
x, // OK
undefinedVariable // Error
}