Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo authored Sep 16, 2023
1 parent 966853b commit a817f8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interpreter/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export class Interpreter {
* @returns Return value of the function.
*/
@autobind
public async execFnSimple(fn: VFn, args: Value[]): Promise<Value> {
public execFnSimple(fn: VFn, args: Value[]): Promise<Value> {
return this._fn(fn, args);
}

Expand Down

0 comments on commit a817f8a

Please sign in to comment.