Class: Native::Object

Inherits:
BasicObject
Includes:
Wrapper
Defined in:
opal/stdlib/native.rb

Instance Method Summary collapse

Methods included from Wrapper

included, #initialize, #to_n

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(mid, *args, &block) ⇒ Object



324
325
326
327
328
329
330
331
332
333
# File 'opal/stdlib/native.rb', line 324

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



259
260
261
# File 'opal/stdlib/native.rb', line 259

def ==(other)
  `#{@native} === #{::Native.try_convert(other)}`
end

#[](key) ⇒ Object



281
282
283
284
285
286
287
288
289
290
291
292
# File 'opal/stdlib/native.rb', line 281

def [](key)
  %x{
    var prop = #{@native}[key];

    if (prop instanceof Function) {
      return prop;
    }
    else {
      return #{::Native.call(@native, key)}
    }
  }
end

#[]=(key, value) ⇒ Object



294
295
296
297
298
299
300
301
302
# File 'opal/stdlib/native.rb', line 294

def []=(key, value)
  native = ::Native.try_convert(value)

  if `#{native} === nil`
    `#{@native}[key] = #{value}`
  else
    `#{@native}[key] = #{native}`
  end
end

#classObject



347
348
349
# File 'opal/stdlib/native.rb', line 347

def class
  `self.$$class`
end

#each(*args) ⇒ Object



267
268
269
270
271
272
273
274
275
276
277
278
279
# File 'opal/stdlib/native.rb', line 267

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: include?, key?, member?

Returns:



263
264
265
# File 'opal/stdlib/native.rb', line 263

def has_key?(name)
  `Opal.hasOwnProperty.call(#{@native}, #{name})`
end

#inspectObject



355
356
357
# File 'opal/stdlib/native.rb', line 355

def inspect
  "#<Native:#{`String(#{@native})`}>"
end

#instance_of?(klass) ⇒ Boolean

Returns:



343
344
345
# File 'opal/stdlib/native.rb', line 343

def instance_of?(klass)
  `self.$$class === klass`
end

#is_a?(klass) ⇒ Boolean Also known as: kind_of?

Returns:



339
340
341
# File 'opal/stdlib/native.rb', line 339

def is_a?(klass)
  `Opal.is_a(self, klass)`
end

#merge!(other) ⇒ Object



304
305
306
307
308
309
310
311
312
313
314
# File 'opal/stdlib/native.rb', line 304

def merge!(other)
  %x{
    other = #{::Native.convert(other)};

    for (var prop in other) {
      #{@native}[prop] = other[prop];
    }
  }

  self
end

#nil?Boolean

Returns:



335
336
337
# File 'opal/stdlib/native.rb', line 335

def nil?
  false
end

#respond_to?(name, include_all = false) ⇒ Boolean

Returns:



316
317
318
# File 'opal/stdlib/native.rb', line 316

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

Returns:



320
321
322
# File 'opal/stdlib/native.rb', line 320

def respond_to_missing?(name, include_all = false)
  `Opal.hasOwnProperty.call(#{@native}, #{name})`
end

#to_a(options = {}, &block) ⇒ Object



351
352
353
# File 'opal/stdlib/native.rb', line 351

def to_a(options = {}, &block)
  ::Native::Array.new(@native, options, &block).to_a
end