Skip to content

Commit

Permalink
public func signatures
Browse files Browse the repository at this point in the history
+ Func.signatures made public
  • Loading branch information
michal-kapala committed Mar 29, 2024
1 parent 2e20267 commit e2b4ce3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jitterbit-script",
"version": "1.0.11",
"version": "1.0.12",
"description": "Static typechecker and interpreter for Jitterbit Script",
"main": "build/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/api/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import TypeEnv from "../typechecker/environment";
export abstract class Func {
name!: string;
module!: FuncModule;
protected signatures!: Signature[];
signatures!: Signature[];
signature!: Signature;
minArgs!: number;
maxArgs!: number;
Expand Down

0 comments on commit e2b4ce3

Please sign in to comment.