Sha256: e2945af42721fb706efc86615cc93c26e0af64c390ef2e6e4cb708bef6b69fcb
Contents?: true
Size: 268 Bytes
Versions: 2
Compression:
Stored size: 268 Bytes
Contents
class AbstractSyntaxTreeKit class Node class FCALL < Node attr_reader :method_id, :arguments def initialize(node:, method_id:, arguments:) super(node) @method_id = method_id @arguments = arguments end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
astkit-0.1.1 | lib/astkit/node/fcall.rb |
astkit-0.1.0 | lib/astkit/node/fcall.rb |