mirror of
https://github.com/rubyjs/therubyrhino
synced 2023-03-27 23:21:34 -04:00
25 lines
No EOL
351 B
Ruby
25 lines
No EOL
351 B
Ruby
|
|
module Rhino
|
|
class NativeObject
|
|
include Enumerable
|
|
attr_reader :j
|
|
|
|
def initialize(j)
|
|
@j = j
|
|
end
|
|
|
|
def [](k)
|
|
To.ruby @j.get(k.to_s, @j)
|
|
end
|
|
|
|
def []=(k,v)
|
|
@j.put(k.to_s,@j,v)
|
|
end
|
|
|
|
def each
|
|
for id in @j.getAllIds() do
|
|
yield id,@j.get(id,@j)
|
|
end
|
|
end
|
|
end
|
|
end |