Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enhance: add callstack #811

Merged
merged 15 commits into from
Oct 29, 2024
6 changes: 4 additions & 2 deletions etc/aiscript.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -645,6 +645,7 @@ export class Scope {
exists(name: string): boolean;
get(name: string): Value;
getAll(): Map<string, Variable>;
getNsPrefix(): string;
// (undocumented)
name: string;
// (undocumented)
Expand Down Expand Up @@ -857,15 +858,16 @@ type VStr = {
// @public (undocumented)
type VUserFn = VFnBase & {
native?: undefined;
name?: string;
args: VFnArg[];
statements: Node_2[];
scope: Scope;
};

// Warnings were encountered during analysis:
//
// src/interpreter/index.ts:38:4 - (ae-forgotten-export) The symbol "LogObject" needs to be exported by the entry point index.d.ts
// src/interpreter/value.ts:46:2 - (ae-forgotten-export) The symbol "Type" needs to be exported by the entry point index.d.ts
// src/interpreter/index.ts:43:4 - (ae-forgotten-export) The symbol "LogObject" needs to be exported by the entry point index.d.ts
// src/interpreter/value.ts:47:2 - (ae-forgotten-export) The symbol "Type" needs to be exported by the entry point index.d.ts

// (No @packageDocumentation comment for this package)

Expand Down
Loading
Loading