class SyntaxTree::Parser

def on_word_new

on_word_new: () -> Word
:call-seq:
def on_word_new
  Word.new(
    parts: [],
    location:
      Location.fixed(line: lineno, char: char_pos, column: current_column)
  )
end