class SyntaxTree::Parser

def on_label_end(value)

on_label_end: (String value) -> LabelEnd
:call-seq:
def on_label_end(value)
  node =
    LabelEnd.new(
      value: value,
      location:
        Location.token(
          line: lineno,
          char: char_pos,
          column: current_column,
          size: value.size
        )
    )
  tokens << node
  node
end