@mojir/lits 2.1.24 → 2.1.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/cli.js +10170 -10045
- package/dist/cli/reference/api.d.ts +6 -3
- package/dist/cli/reference/categories/meta.d.ts +3 -0
- package/dist/cli/reference/index.d.ts +622 -620
- package/dist/cli/src/Lits/Lits.d.ts +3 -2
- package/dist/cli/src/builtin/interface.d.ts +4 -5
- package/dist/cli/src/builtin/normalExpressions/categories/meta.d.ts +3 -0
- package/dist/cli/src/builtin/normalExpressions/index.d.ts +3 -0
- package/dist/cli/src/builtin/specialExpressions/functions.d.ts +2 -2
- package/dist/cli/src/parser/Parser.d.ts +1 -0
- package/dist/cli/src/parser/types.d.ts +5 -2
- package/dist/cli/src/tokenizer/token.d.ts +4 -2
- package/dist/cli/src/tokenizer/tokenizers.d.ts +3 -2
- package/dist/cli/src/typeGuards/index.d.ts +0 -4
- package/dist/cli/src/utils/arity.d.ts +10 -0
- package/dist/cli/src/utils/docString/generateDocString.d.ts +2 -0
- package/dist/cli/src/utils/index.d.ts +1 -0
- package/dist/index.esm.js +9882 -9757
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +9882 -9757
- package/dist/index.js.map +1 -1
- package/dist/lits.iife.js +9922 -9797
- package/dist/lits.iife.js.map +1 -1
- package/dist/reference/api.d.ts +6 -3
- package/dist/reference/categories/meta.d.ts +3 -0
- package/dist/reference/index.d.ts +622 -620
- package/dist/src/Lits/Lits.d.ts +3 -2
- package/dist/src/builtin/interface.d.ts +4 -5
- package/dist/src/builtin/normalExpressions/categories/meta.d.ts +3 -0
- package/dist/src/builtin/normalExpressions/index.d.ts +3 -0
- package/dist/src/builtin/specialExpressions/functions.d.ts +2 -2
- package/dist/src/index.d.ts +1 -1
- package/dist/src/parser/Parser.d.ts +1 -0
- package/dist/src/parser/types.d.ts +5 -2
- package/dist/src/tokenizer/token.d.ts +4 -2
- package/dist/src/tokenizer/tokenizers.d.ts +3 -2
- package/dist/src/typeGuards/index.d.ts +0 -4
- package/dist/src/utils/arity.d.ts +10 -0
- package/dist/src/utils/docString/generateDocString.d.ts +2 -0
- package/dist/src/utils/index.d.ts +1 -0
- package/dist/testFramework.esm.js +16789 -746
- package/dist/testFramework.esm.js.map +1 -1
- package/dist/testFramework.js +16789 -746
- package/dist/testFramework.js.map +1 -1
- package/package.json +1 -1
- package/dist/cli/src/utils/paramCount.d.ts +0 -7
- package/dist/src/utils/paramCount.d.ts +0 -7
package/package.json
CHANGED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import type { ParamCount } from '../builtin/interface';
|
|
2
|
-
import type { FunctionLike, NormalExpressionNodeWithName } from '../parser/types';
|
|
3
|
-
export declare function paramCountAccepts(paramsCount: ParamCount, nbrOfParams: number): boolean;
|
|
4
|
-
export declare function paramCountAcceptsMin(paramsCount: ParamCount, nbrOfParams: number): boolean;
|
|
5
|
-
export declare function getCommonParamCountFromFunctions(params: FunctionLike[]): ParamCount | null;
|
|
6
|
-
export declare function getParamCountFromFunction(param: FunctionLike): ParamCount;
|
|
7
|
-
export declare function assertNumberOfParams(count: ParamCount, node: NormalExpressionNodeWithName): void;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import type { ParamCount } from '../builtin/interface';
|
|
2
|
-
import type { FunctionLike, NormalExpressionNodeWithName } from '../parser/types';
|
|
3
|
-
export declare function paramCountAccepts(paramsCount: ParamCount, nbrOfParams: number): boolean;
|
|
4
|
-
export declare function paramCountAcceptsMin(paramsCount: ParamCount, nbrOfParams: number): boolean;
|
|
5
|
-
export declare function getCommonParamCountFromFunctions(params: FunctionLike[]): ParamCount | null;
|
|
6
|
-
export declare function getParamCountFromFunction(param: FunctionLike): ParamCount;
|
|
7
|
-
export declare function assertNumberOfParams(count: ParamCount, node: NormalExpressionNodeWithName): void;
|