prism/tests/languages/javascript/issue1807.test

25 lines
434 B
Plaintext

Array.from();
foo.var.new;
----------------------------------------------------
[
"Array",
["punctuation", "."],
["function", "from"],
["punctuation", "("],
["punctuation", ")"],
["punctuation", ";"],
"\r\nfoo",
["punctuation", "."],
"var",
["punctuation", "."],
"new",
["punctuation", ";"]
]
----------------------------------------------------
Checks for properties which have the same name as keywords. See #1807.