Files
whetstone_DSL/tools/mcp/grammars/whetstone_estimate_debug_budget.gbnf

22 lines
1.6 KiB
Plaintext

# ---------------------------------------------------------------------------
# JSON primitives
# ---------------------------------------------------------------------------
ws ::= [ \t\n\r]*
string ::= "\"" ([^"\\\x7F\x00-\x1F] | "\\" (["\\/bfnrt] | "u" [0-9a-fA-F] [0-9a-fA-F] [0-9a-fA-F] [0-9a-fA-F]))* "\""
number ::= "-"? ([0-9] | [1-9] [0-9]*) ("." [0-9]+)? ([eE] [-+]? [0-9]+)?
integer ::= "-"? ([0-9] | [1-9] [0-9]*)
boolean ::= "true" | "false"
null ::= "null"
any-value ::= string | number | boolean | null | any-object | any-array
any-object ::= "{" ws (string ws ":" ws any-value (ws "," ws string ws ":" ws any-value)*)? ws "}"
any-array ::= "[" ws (any-value (ws "," ws any-value)*)? ws "]"
# --- whetstone_estimate_debug_budget ---
root ::= "{" ws "\"tool\"" ws ":" ws "\"whetstone_estimate_debug_budget\"" ws "," ws "\"arguments\"" ws ":" ws whetstone-estimate-debug-budget-args-obj-8 ws "}"
whetstone-estimate-debug-budget-args-complexity-pair-2 ::= "\"complexity\"" ws ":" ws integer
whetstone-estimate-debug-budget-args-failing_targets-pair-4 ::= "\"failing_targets\"" ws ":" ws integer
whetstone-estimate-debug-budget-args-obj-8 ::= "{" ws (whetstone-estimate-debug-budget-args-opt-7 (ws "," ws whetstone-estimate-debug-budget-args-opt-7)*)? ws "}"
whetstone-estimate-debug-budget-args-opt-7 ::= whetstone-estimate-debug-budget-args-complexity-pair-2 | whetstone-estimate-debug-budget-args-failing_targets-pair-4 | whetstone-estimate-debug-budget-args-profile-pair-6
whetstone-estimate-debug-budget-args-profile-pair-6 ::= "\"profile\"" ws ":" ws string