Skip to content

Commit 2328786

Browse files
committed
v0.1.8 - Interpreter growing.
1 parent 4a5bf80 commit 2328786

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "For Modpack makers.",
55
"repository": "https://github.com/Yesterday17/ZenScript",
66
"license": "MIT",
7-
"version": "0.1.7",
7+
"version": "0.1.8",
88
"publisher": "yesterday17",
99
"engines": {
1010
"vscode": "^1.30.0"

server/parser/zsInterpreter.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,15 +336,13 @@ class ZenScriptInterpreter extends ZSParser.getBaseCstVisitorConstructor() {
336336
};
337337
}
338338

339-
// TODO: Debug
340339
protected ParameterList(ctx: NodeContext): ASTNode {
341340
return {
342341
type: 'parameter-list',
343342
item: ctx.Parameter.map((item: any) => this.visit(item)),
344343
};
345344
}
346345

347-
// TODO: Debug
348346
protected Parameter(ctx: NodeContext): ASTNode {
349347
return {
350348
type: 'parameter',

0 commit comments

Comments
 (0)