Skip to content

Commit

Permalink
parser: add INPUT-OUTPUT to function_parameter_mode
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbz64 committed Nov 28, 2024
1 parent 420c96c commit ea8aae3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion grammar.js
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,8 @@ module.exports = grammar({
$._block_terminator,
seq(kw("END"), kw("FUNCTION"), $._terminator)
),
function_parameter_mode: ($) => choice(kw("INPUT"), kw("OUTPUT")),
function_parameter_mode: ($) =>
choice(kw("INPUT"), kw("OUTPUT"), kw("INPUT-OUTPUT")),
function_parameter_tuning: ($) =>
choice(
kw("APPEND"),
Expand Down

0 comments on commit ea8aae3

Please sign in to comment.