MCPcopy Index your code
hub / github.com/aiscript-dev/aiscript / parse

Method parse

src/parser/index.ts:32–37  ·  view source on GitHub ↗
(input: string)

Source from the content-addressed store, hash-verified

30 }
31
32 public static parse(input: string): Ast.Node[] {
33 if (Parser.instance == null) {
34 Parser.instance = new Parser();
35 }
36 return Parser.instance.parse(input);
37 }
38
39 public addPlugin(type: PluginType, plugin: ParserPlugin): void {
40 switch (type) {

Callers 4

exeFunction · 0.95
exeSyncFunction · 0.95
getMetaFunction · 0.95
getAttrFunction · 0.95

Calls 1

parseTopLevelFunction · 0.85

Tested by

no test coverage detected