From e2b4ce330f236642d443767acc71ad5b4c8ecde5 Mon Sep 17 00:00:00 2001 From: michal-kapala Date: Fri, 29 Mar 2024 14:07:24 +0100 Subject: [PATCH] public func signatures + Func.signatures made public --- package.json | 2 +- src/api/types.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 824312d..88a0861 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/api/types.ts b/src/api/types.ts index 94f230f..1a16c2e 100644 --- a/src/api/types.ts +++ b/src/api/types.ts @@ -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;