class SyntaxTree::Parser

def on___end__(value)

on___end__: (String value) -> EndContent
:call-seq:
def on___end__(value)
  @__end__ =
    EndContent.new(
      value: source[(char_pos + value.length)..],
      location:
        Location.token(
          line: lineno,
          char: char_pos,
          column: current_column,
          size: value.size
        )
    )
end