Char constructor

Char(
  1. int c
)

Implementation

Char(this.c) : _res = Tuple1(c) {
  label = printableChar(c);
  error = ParseError.expected(label);
}