get_bool()
Looks for a true or false token. Returns false if TkFALSE or TkNIL are found.
# File lib/rdoc/parser/ruby.rb, line 248 def get_bool skip_tkspace tk = get_tk case tk when TkTRUE true when TkFALSE, TkNIL false else unget_tk tk true end end