Sha256: 2d5d985d3e6980072177c8f16ac2035591fa946eb905c778742cefbcd0a6e4b0
Contents?: true
Size: 246 Bytes
Versions: 27
Compression:
Stored size: 246 Bytes
Contents
module Johnson module Nodes class ForIn < Node alias :body :value attr_accessor :in_cond def initialize(line, column, in_cond, body) super(line, column, body) @in_cond = in_cond end end end end
Version data entries
27 entries across 27 versions & 5 rubygems