Skip to content

Commit

Permalink
v0.1.8 - Interpreter growing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yesterday17 committed Jan 29, 2019
1 parent 4a5bf80 commit 2328786
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "For Modpack makers.",
"repository": "https://github.com/Yesterday17/ZenScript",
"license": "MIT",
"version": "0.1.7",
"version": "0.1.8",
"publisher": "yesterday17",
"engines": {
"vscode": "^1.30.0"
Expand Down
2 changes: 0 additions & 2 deletions server/parser/zsInterpreter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -336,15 +336,13 @@ class ZenScriptInterpreter extends ZSParser.getBaseCstVisitorConstructor() {
};
}

// TODO: Debug
protected ParameterList(ctx: NodeContext): ASTNode {
return {
type: 'parameter-list',
item: ctx.Parameter.map((item: any) => this.visit(item)),
};
}

// TODO: Debug
protected Parameter(ctx: NodeContext): ASTNode {
return {
type: 'parameter',
Expand Down

0 comments on commit 2328786

Please sign in to comment.