Skip to content

Commit

Permalink
Fix bug with calling parse_interactive
Browse files Browse the repository at this point in the history
  • Loading branch information
thekevinscott committed Feb 23, 2024
1 parent e3f1c7f commit d0a7a09
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions larkjs/lark.js
Original file line number Diff line number Diff line change
Expand Up @@ -3759,10 +3759,7 @@ class Lark extends Serialize {
*/
parse_interactive(text = null, start = null) {
return this.parser.parse_interactive({
unknown_param_0: text,
start: start,
});
return this.parser.parse_interactive(text, start);
}

/**
Expand Down

0 comments on commit d0a7a09

Please sign in to comment.