Class: Native::Object
- Inherits:
-
BasicObject
- Includes:
- Native
- Defined in:
- opal/stdlib/native.rb
Instance Method Summary
collapse
Methods included from Native
call, convert, included, #initialize, is_a?, proc, #to_n, try_convert
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(mid, *args, &block) ⇒ Object
312
313
314
315
316
317
318
319
320
321
|
# File 'opal/stdlib/native.rb', line 312
def method_missing(mid, *args, &block)
%x{
if (mid.charAt(mid.length - 1) === '=') {
return #{self[mid.slice(0, mid.length - 1)] = args[0]};
}
else {
return #{::Native.call(@native, mid, *args, &block)};
}
}
end
|
Instance Method Details
#==(other) ⇒ Object
243
244
245
|
# File 'opal/stdlib/native.rb', line 243
def ==(other)
`#@native === #{Native.try_convert(other)}`
end
|
269
270
271
272
273
274
275
276
277
278
279
280
|
# File 'opal/stdlib/native.rb', line 269
def [](key)
%x{
var prop = #@native[key];
if (prop instanceof Function) {
return prop;
}
else {
return #{::Native.call(@native, key)}
}
}
end
|
#[]=(key, value) ⇒ Object
282
283
284
285
286
287
288
289
290
|
# File 'opal/stdlib/native.rb', line 282
def []=(key, value)
native = Native.try_convert(value)
if `#{native} === nil`
`#@native[key] = #{value}`
else
`#@native[key] = #{native}`
end
end
|
337
338
339
|
# File 'opal/stdlib/native.rb', line 337
def class
`self.$$class`
end
|
#each(*args) ⇒ Object
255
256
257
258
259
260
261
262
263
264
265
266
267
|
# File 'opal/stdlib/native.rb', line 255
def each(*args)
if block_given?
%x{
for (var key in #@native) {
#{yield `key`, `#@native[key]`}
}
}
self
else
method_missing(:each, *args)
end
end
|
#has_key?(name) ⇒ Boolean
Also known as:
key?, include?, member?
247
248
249
|
# File 'opal/stdlib/native.rb', line 247
def has_key?(name)
`Opal.hasOwnProperty.call(#@native, #{name})`
end
|
345
346
347
|
# File 'opal/stdlib/native.rb', line 345
def inspect
"#<Native:#{`String(#@native)`}>"
end
|
#instance_of?(klass) ⇒ Boolean
333
334
335
|
# File 'opal/stdlib/native.rb', line 333
def instance_of?(klass)
`self.$$class === klass`
end
|
#is_a?(klass) ⇒ Boolean
Also known as:
kind_of?
327
328
329
|
# File 'opal/stdlib/native.rb', line 327
def is_a?(klass)
`Opal.is_a(self, klass)`
end
|
#merge!(other) ⇒ Object
292
293
294
295
296
297
298
299
300
301
302
|
# File 'opal/stdlib/native.rb', line 292
def merge!(other)
%x{
other = #{Native.convert(other)};
for (var prop in other) {
#@native[prop] = other[prop];
}
}
self
end
|
323
324
325
|
# File 'opal/stdlib/native.rb', line 323
def nil?
false
end
|
#respond_to?(name, include_all = false) ⇒ Boolean
304
305
306
|
# File 'opal/stdlib/native.rb', line 304
def respond_to?(name, include_all = false)
Kernel.instance_method(:respond_to?).bind(self).call(name, include_all)
end
|
#respond_to_missing?(name, include_all = false) ⇒ Boolean
308
309
310
|
# File 'opal/stdlib/native.rb', line 308
def respond_to_missing?(name, include_all = false)
`Opal.hasOwnProperty.call(#@native, #{name})`
end
|
#to_a(options = {}, &block) ⇒ Object
341
342
343
|
# File 'opal/stdlib/native.rb', line 341
def to_a(options = {}, &block)
Native::Array.new(@native, options, &block).to_a
end
|