-
Notifications
You must be signed in to change notification settings - Fork 6
Compiler API
Francisco Bernardo edited this page Jan 19, 2021
·
1 revision
let grammarSpecification
let grammarCompilationErrors, grammarCompiledParser;
let { grammarCompilationErrors, grammarCompiledParser } = compile(grammarSpecification);
let liveCode = codeMirror.getBlock()
let liveCodeAbstractSyntaxTree, liveCodeParseErrors, dspCode;
let {liveCodeAbstractSyntaxTree, liveCodeParseErrors, dspCode } = await parseLiveCodeAsync(liveCode);