nitc :: Prod :: collect_text
# Join the text of all visited tokens fun collect_text: String do var v = new TextCollectorVisitor v.enter_visit(self) assert v.text != "" return v.text end