Class: Enumerator::Yielder

Inherits:
Object show all
Defined in:
opal/opal/corelib/enumerator.rb

Instance Method Summary collapse

Constructor Details

#initialize(&block) ⇒ Yielder

Returns a new instance of Yielder.



132
133
134
# File 'opal/opal/corelib/enumerator.rb', line 132

def initialize(&block)
  @block = block
end

Instance Method Details

#<<(*values) ⇒ Object



148
149
150
151
152
# File 'opal/opal/corelib/enumerator.rb', line 148

def <<(*values)
  self.yield(*values)

  self
end

#yield(*values) ⇒ Object



136
137
138
139
140
141
142
143
144
145
146
# File 'opal/opal/corelib/enumerator.rb', line 136

def yield(*values)
  %x{
    var value = Opal.yieldX(#{@block}, values);

    if (value === $breaker) {
      throw $breaker;
    }

    return value;
  }
end