The benchmark directory is relocated from the project root into the test directory, and all scripts, documentation links, and gitignore paths are updated accordingly. The test runner is also refactored to explicitly walk subdirectories (core, io, language, limit) instead of using a single test root, and a new test/README.md is added to document the test suite structure. Additionally, the constructor test for the Foo class is updated to add a zero-arity constructor and adjust expected output strings.
18 lines
443 B
Plaintext
18 lines
443 B
Plaintext
// One byte UTF-8 Sequences.
|
|
IO.print("\u0041") // expect: A
|
|
IO.print("\u007e") // expect: ~
|
|
|
|
// Two byte sequences.
|
|
IO.print("\u00b6") // expect: ¶
|
|
IO.print("\u00de") // expect: Þ
|
|
|
|
// Three byte sequences.
|
|
IO.print("\u0950") // expect: ॐ
|
|
IO.print("\u0b83") // expect: ஃ
|
|
|
|
// Capitalized hex.
|
|
IO.print("\u00B6") // expect: ¶
|
|
IO.print("\u00DE") // expect: Þ
|
|
|
|
// TODO: Syntax for Unicode escapes > 0xffff?
|