Class: IO

Inherits:
Object
  • Object
show all
Defined in:
lib/opal_patches.rb

Class Method Summary collapse

Class Method Details

.binread(*args) ⇒ Object

Raises:

  • (::Errno::ENOENT)


582
583
584
# File 'lib/opal_patches.rb', line 582

def self.binread(*args)
  raise ::Errno::ENOENT, args.first.to_s
end

.read(*args) ⇒ Object

Raises:

  • (::Errno::ENOENT)


578
579
580
# File 'lib/opal_patches.rb', line 578

def self.read(*args)
  raise ::Errno::ENOENT, args.first.to_s
end