# File lib/parse_tree.rb, line 149
  def parse_tree_for_method(klass, method, is_cls_meth=false, verbose = true)
    $stderr.puts "** parse_tree_for_method(#{klass}, #{method}):" if $DEBUG
    old_verbose, $VERBOSE = $VERBOSE, verbose
    r = parse_tree_for_meth(klass, method.to_sym, is_cls_meth)
    r
  ensure
    $VERBOSE = old_verbose
  end