# File lib/kwartz/parser.rb, line 133 def scan_ident ## identifer if is_identchar(@ch) sb = @ch.chr while (c = getch()) && is_identchar(c) sb << c.chr end @value = sb return @token = :ident end return nil end