constant method

Parser constant()

Implementation

Parser constant() => [
  seq2(
    pattern('+-'),
    [ref0(identifier), ref0(unsignedNumber)].toChoiceParser(),
  ),
  ref0(unsignedConstant),
].toChoiceParser();