mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
c4fdfabcc8
g -L frozen_string_literal ext/**/*.rb|xargs ruby -Ka -e'ARGV.each{|fn|puts fn;open(fn,"r+"){|f|s=f.read.sub(/\A(#!.*\n)?(#.*coding.*\n)?/,"\\&# frozen_string_literal: false\n");f.rewind;f.write s}}' git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53143 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
15 lines
338 B
Ruby
Executable file
15 lines
338 B
Ruby
Executable file
# frozen_string_literal: false
|
|
off = true
|
|
ARGF.each do |line|
|
|
case line
|
|
when /RIPPER_PARAMS_DECL_BEGIN/
|
|
off = false
|
|
when /RIPPER_PARAMS_DECL_END/
|
|
exit
|
|
when /ripper/
|
|
next if off
|
|
var = line.scan(/\w+/).last or next
|
|
base = var.sub(/ripper_/, '')
|
|
puts %"\#define #{base}\t\t(parser->ripper_#{base})"
|
|
end
|
|
end
|