method
get_bool
v1_9_2_180 -
Show latest stable
- Class:
RDoc::Parser::Ruby
get_bool()public
No documentation available.
# File lib/rdoc/parser/ruby.rb, line 232
def get_bool
skip_tkspace
tk = get_tk
case tk
when TkTRUE
true
when TkFALSE, TkNIL
false
else
unget_tk tk
true
end
end