class SyntaxTree::Parser

def on_CHAR(value)

on_CHAR: (String value) -> CHAR
:call-seq:
def on_CHAR(value)
  CHAR.new(
    value: value,
    location:
      Location.token(
        line: lineno,
        char: char_pos,
        column: current_column,
        size: value.size
      )
  )
end