Sha256: 481418b4e8400a5e869ffed64608d6966bacd21cd22e4bea9327dcf6d8573f2c

Contents?: true

Size: 422 Bytes

Versions: 22

Compression:

Stored size: 422 Bytes

Contents

module Ruby2JS
  class Converter

    # (while-post
    #   (true)
    #   (kwbegin
    #     (...)))

    handle :while_post do |condition, block|
      block = block.updated(:begin) if block.type == :kwbegin
      begin
        next_token, @next_token = @next_token, :continue
        "do {#@nl#{ scope block }#@nl} while (#{ parse condition })"
      ensure
        @next_token = next_token
      end
    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
ruby2js-1.15.1 lib/ruby2js/converter/whilepost.rb
ruby2js-1.15.0 lib/ruby2js/converter/whilepost.rb
ruby2js-1.14.1 lib/ruby2js/converter/whilepost.rb
ruby2js-1.14.0 lib/ruby2js/converter/whilepost.rb
ruby2js-1.13.1 lib/ruby2js/converter/whilepost.rb
ruby2js-1.13.0 lib/ruby2js/converter/whilepost.rb
ruby2js-1.12.2 lib/ruby2js/converter/whilepost.rb
ruby2js-1.12.1 lib/ruby2js/converter/whilepost.rb
ruby2js-1.12.0 lib/ruby2js/converter/whilepost.rb
ruby2js-1.11.1 lib/ruby2js/converter/whilepost.rb
ruby2js-1.11.0 lib/ruby2js/converter/whilepost.rb
ruby2js-1.10.0 lib/ruby2js/converter/whilepost.rb
ruby2js-1.9.3 lib/ruby2js/converter/whilepost.rb
ruby2js-1.9.2 lib/ruby2js/converter/whilepost.rb
ruby2js-1.9.1 lib/ruby2js/converter/whilepost.rb
ruby2js-1.9.0 lib/ruby2js/converter/whilepost.rb
ruby2js-1.8.0 lib/ruby2js/converter/whilepost.rb
ruby2js-1.7.0 lib/ruby2js/converter/whilepost.rb
ruby2js-1.6.0 lib/ruby2js/converter/whilepost.rb
ruby2js-1.5.0 lib/ruby2js/converter/whilepost.rb