# File lib/parse_tree.rb, line 165
  def parse_tree_for_string(source,
                            filename = '(string)', line = 1, verbose = true)
    old_verbose, $VERBOSE = $VERBOSE, verbose
    return parse_tree_for_str0(source, filename, line)
  ensure
    $VERBOSE = old_verbose
  end