# File lib/ruby_lexer.rb, line 213 def int_with_base base rb_compile_error "Invalid numeric format" if src.matched =~ /__/ self.yacc_value = src.matched.to_i(base) return :tINTEGER end