mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
3d307549a5
eval-ed BEGIN END order. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4702 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
55 lines
655 B
Ruby
55 lines
655 B
Ruby
BEGIN {
|
|
puts "begin1"
|
|
local_begin1 = "local_begin1"
|
|
$global_begin1 = "global_begin1"
|
|
ConstBegin1 = "ConstBegin1"
|
|
}
|
|
|
|
BEGIN {
|
|
puts "begin2"
|
|
}
|
|
|
|
# for scope check
|
|
raise if defined?(local_begin1)
|
|
raise unless defined?($global_begin1)
|
|
raise unless defined?(::ConstBegin1)
|
|
local_for_end2 = "end2"
|
|
$global_for_end1 = "end1"
|
|
|
|
puts "main"
|
|
|
|
END {
|
|
puts local_for_end2
|
|
}
|
|
|
|
END {
|
|
raise
|
|
puts "should not be dumped"
|
|
}
|
|
|
|
eval <<EOE
|
|
BEGIN {
|
|
puts "innerbegin1"
|
|
}
|
|
|
|
BEGIN {
|
|
puts "innerbegin2"
|
|
}
|
|
|
|
END {
|
|
puts "innerend2"
|
|
}
|
|
|
|
END {
|
|
puts "innerend1"
|
|
}
|
|
EOE
|
|
|
|
END {
|
|
exit
|
|
puts "should not be dumped"
|
|
}
|
|
|
|
END {
|
|
puts $global_for_end1
|
|
}
|