Sha256: 5a2aee8c8a9a81e7d59f64ee5722173c8d5122275c1334b05b3f648ff3424e0c
Contents?: true
Size: 828 Bytes
Versions: 4
Compression:
Stored size: 828 Bytes
Contents
module VagrantPlugins module CommandServe class Mappers module Internal class Graph class Vertex # Vertex that represents an output of # a method class Final < Vertex attr_reader :type def initialize(type:) @type = type end # When an output Vertex is called, # we simply set the value for use def call(arg) @value = arg end def to_s "<Vertex:Final type=#{type} hash=#{hash_code}>" end def inspect "<#{self.class.name} type=#{type} value=#{value} hash=#{hash_code}>" end end end end end end end end
Version data entries
4 entries across 4 versions & 2 rubygems