Skip to content

Commit 0b72409

Browse files
authored
Merge pull request #44 from thekevinscott/ks/interactive-parse-bug
Fix bug with `parse_interactive`
2 parents 72331cb + e714912 commit 0b72409

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)