Skip to content

Commit e714912

Browse files
committed
Fix bug with calling parse_interactive
1 parent 29ef81e commit e714912

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

larkjs/lark.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3757,10 +3757,7 @@ class Lark extends Serialize {
37573757
37583758
*/
37593759
parse_interactive(text = null, start = null) {
3760-
return this.parser.parse_interactive({
3761-
unknown_param_0: text,
3762-
start: start,
3763-
});
3760+
return this.parser.parse_interactive(text, start);
37643761
}
37653762

37663763
/**

0 commit comments

Comments
 (0)