mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8 lines
118 B
Ruby
8 lines
118 B
Ruby
|
class Reline::KeyActor::Base
|
||
|
MAPPING = Array.new(256)
|
||
|
|
||
|
def get_method(key)
|
||
|
self.class::MAPPING[key]
|
||
|
end
|
||
|
end
|