Sha256: 1fd86375449123e82e02a913228287dbe027f13bb4719aa1ba3609bd56c403e1

Contents?: true

Size: 196 Bytes

Versions: 7

Compression:

Stored size: 196 Bytes

Contents

module Ruby2JS
  class Converter

    # (break
    #   (int 1))

    handle :break do |n=nil|
      raise NotImplementedError, "break argument #{ n.inspect }" if n
      'break'
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ruby2js-1.2.0 lib/ruby2js/converter/break.rb
ruby2js-1.1.5 lib/ruby2js/converter/break.rb
ruby2js-1.1.4 lib/ruby2js/converter/break.rb
ruby2js-1.1.3 lib/ruby2js/converter/break.rb
ruby2js-1.1.2 lib/ruby2js/converter/break.rb
ruby2js-1.1.1 lib/ruby2js/converter/break.rb
ruby2js-1.1.0 lib/ruby2js/converter/break.rb