Sha256: 3ad0ff2fa933e061a26c44a5419b6b6e61848087abe6ad51379a78ad9c040949
Contents?: true
Size: 313 Bytes
Versions: 27
Compression:
Stored size: 313 Bytes
Contents
# frozen_string_literal: true require 'opal/nodes/call' module Opal module Nodes class LambdaNode < Base handle :lambda children :iter def compile helper :lambda scope.defines_lambda do push '$lambda(', expr(iter), ')' end end end end end
Version data entries
27 entries across 27 versions & 1 rubygems