quil-rs
quil-rs copied to clipboard
DELAY should require at least one qubit identifier
According to the spec
⟨Delay⟩ ::= DELAY ⟨Qubit⟩+⟨Frame Identifier⟩*⟨Expression⟩
i.e. DELAY
needs one or more qubit identifiers. Currently DELAY "ro_rx" "ro_tx" 0.5
parses without error.
Probably need a many1
in here.