Sha256: efda69dc3b8cfaf267ff71ee5909d7e23d5b804f1854cf2ae48b07d86f0944fb
Contents?: true
Size: 254 Bytes
Versions: 2
Compression:
Stored size: 254 Bytes
Contents
class AbstractSyntaxTreeKit class Node class OP_ASGN_AND < Node attr_reader :variable, :value def initialize(node:, variable:, value:) super(node) @variable = variable @value = value end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
astkit-0.1.1 | lib/astkit/node/op_asgn_and.rb |
astkit-0.1.0 | lib/astkit/node/op_asgn_and.rb |