Update tests.

This commit is contained in:
Mihai Bazon
2014-04-18 11:19:52 +03:00
parent 8fbe200012
commit 37693d2812

View File

@@ -26,7 +26,7 @@ dot_properties: {
a.foo = "bar"; a.foo = "bar";
a["if"] = "if"; a["if"] = "if";
a["*"] = "asterisk"; a["*"] = "asterisk";
a.\u0EB3 = "unicode"; a["\u0EB3"] = "unicode";
a[""] = "whitespace"; a[""] = "whitespace";
a["1_1"] = "foo"; a["1_1"] = "foo";
} }
@@ -48,7 +48,7 @@ dot_properties_es5: {
a.foo = "bar"; a.foo = "bar";
a.if = "if"; a.if = "if";
a["*"] = "asterisk"; a["*"] = "asterisk";
a.\u0EB3 = "unicode"; a["\u0EB3"] = "unicode";
a[""] = "whitespace"; a[""] = "whitespace";
} }
} }