Include diacritical combining marks in identifier character set

Closes marijn/tern#157
This commit is contained in:
Marijn Haverbeke
2013-05-21 09:07:50 +02:00
parent 6dd35f870a
commit 38f0e80547
3 changed files with 17 additions and 2 deletions

View File

@@ -26128,6 +26128,21 @@ test("if(1)/ foo/", {
]
});
test("price_9̶9̶_89", {
type: "Program",
body: [
{
type: "ExpressionStatement",
expression: {
type: "Identifier",
name: "price_9̶9̶_89",
start: 0,
end: 13
}
}
]
});
// option tests
test("var a = 1;", {