/* * call-seq: * tokenizer.text = text -> text * * Get the text being tokenized by the tokenizer. */ static VALUE frb_rets_get_text(VALUE self) { TokenStream *ts; GET_TS(ts, self); return RETS(ts)->rtext; }