remove ascii_identifiers

This commit is contained in:
alexlamsl
2017-07-23 12:54:50 +08:00
parent 77d18be073
commit 29011ea60a
2 changed files with 0 additions and 20 deletions

View File

@@ -103,22 +103,6 @@ non_escape_2_non_escape: {
expect_exact: 'var µþ="µþ";'
}
non_escape_2_half_escape1: {
beautify = {ascii_only: false, ascii_identifiers: true, ecma: 6}
input: {
var µþ = "µþ";
}
expect_exact: 'var \\u00b5\\u00fe="µþ";'
}
non_escape_2_half_escape2: {
beautify = {ascii_only: true, ascii_identifiers: false, ecma: 6}
input: {
var µþ = "µþ";
}
expect_exact: 'var µþ="\\xb5\\xfe";'
}
issue_2242_1: {
beautify = {
ascii_only: false,