mirror of
https://github.com/danbulant/oxc
synced 2026-05-22 21:58:36 +00:00
532 B
532 B
The JavaScript Oxidation Compiler
See index.d.ts for parseSync and parseAsync API.
import assert from 'assert';
import oxc from 'oxc-parser';
const sourceText = "let foo: Foo = 'foo';";
// Filename extension is used to determine which
// dialect to parse source as
const options = { sourceFilename: 'text.tsx' };
test(oxc.parseSync(sourceText, options));
test(await oxc.parseAsync(sourceText, options));
function test(ret) {
assert(ret.program.body.length == 1);
assert(ret.errors.length == 0);
}