summaryrefslogtreecommitdiff
path: root/tool/debug_counter.rb
blob: 79c7b08269866a33dfe76eb00563fe6c88d54e3e (plain)
1
2
3
4
5
6

ARGF.each_line{|line|
  if /^\s+COUNTER\((.+)\),$/ =~ line
    puts "\"#{$1}\","
  end
}