1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
def d s
a = []
if !s.nil? then
s.each_byte { |b| a << b.to_s(16) }
end
p a
end
aleph = "\xd7\x90"
puts '-- kcode not used by literal string ctor'
$KCODE = "u"
u = aleph
$KCODE = "n"
a = aleph
/(.)/ =~ u
d $1
/(.)/ =~ a
d $1
puts '-- kcode not used by string ctor'
$KCODE = "u"
u = String.new(aleph)
$KCODE = "n"
a = String.new(aleph)
/(.)/ =~ u
d $1
/(.)/ =~ a
d $1
puts '-- kcode not used by regex ctor'
x = aleph
$KCODE = "u"
ru = /(.)/
$KCODE = "n"
ra = /(.)/
ru =~ x
d $1
ra =~ x
d $1
puts '-- kcode read by regex match'
x = aleph
$KCODE = "u"
/(.)/ =~ x
d $1
$KCODE = "n"
/(.)/ =~ x
d $1
puts '-- regex option --'
/(.)/u =~ x rescue puts $!
d $1
/(.)/n =~ x
d $1
puts '-- kcode read directly, not using globals table'
x = aleph
$k = "u"
alias $old_KCODE $KCODE
alias $KCODE $k
p $old_KCODE
p $KCODE
/(.)/ =~ x
d $1
alias $KCODE $old_KCODE # restore
puts '-- assignment --'
class C
def to_s
"C.new"
end
def to_str
"u"
end
end
def try_set value
$KCODE = value
rescue
puts "#{value.inspect} -> error: #{$!}"
else
puts "#{value.inspect} -> #{$KCODE.inspect}"
end
try_set 1
try_set nil
try_set C.new
try_set ""
try_set "foo"
try_set "a"
try_set "A"
try_set "n"
try_set "N"
try_set "s"
try_set "S"
try_set "e"
try_set "E"
try_set "u"
try_set "U"
try_set "Uxx"
try_set "Exx"
try_set "Sxx"
puts '-- mutability --'
$KCODE = "u"
p $KCODE
($KCODE[0] = 'x') rescue puts $!
p $KCODE
puts '-- KCODE usage --'
x = aleph
$KCODE = "a"
p x.inspect.length
p x.length
$KCODE = "u"
p x.inspect.length
p x.length
|