Does OXC pass all TC39 tests? #4354
-
As the title says, does it pass all tests from tc39/test262? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
The oxc parser passed 45859 tests and still has 4 negative tests failed. You can check it on our snapshot |
Beta Was this translation helpful? Give feedback.
-
https://github.com/oxc-project/oxc/blob/test-visit/tasks/coverage/parser_test262.snap
We can parse all test262 tests. The 4 "Expect Syntax Error" requires module resolution so is not done yet. https://github.com/oxc-project/oxc/blob/test-visit/tasks/coverage/codegen_runtime_test262.snap This shows our passed runtime tests, all failing cases are due to misconfigured environment. @DavidHancu What do you need this information for? |
Beta Was this translation helpful? Give feedback.
https://github.com/oxc-project/oxc/blob/test-visit/tasks/coverage/parser_test262.snap
We can parse all test262 tests. The 4 "Expect Syntax Error" requires module resolution so is not done yet.
https://github.com/oxc-project/oxc/blob/test-visit/tasks/…