Files
ladybird/Tests/LibJS/Runtime/unicode-identifier-continue.js
Timothy Flynn 10ce847931 LibJS+LibUnicode: Use LibUnicode as appropriate for lexing JavaScript
Now that LibUnicode exports its character type APIs in Rust, we can use
them to lex identifiers and whitespace.

Fixes #8870.
2026-04-19 10:39:26 +02:00

8 lines
119 B
JavaScript

test("basic functionality", () => {
const foo = {
: 12389,
};
expect(foo.).toBe(12389);
});