blockConst method

Parser blockConst()

Implementation

Parser blockConst() => seq2(
  ref1(token, 'const'),
  seq4(
    ref0(identifier),
    ref1(token, '='),
    ref0(constant),
    ref1(token, ';'),
  ).plus(),
);