Sha256: 4ad80b5a2e9d8a3673e5efac378d437fb9dd48517f3f8e666169ee54828e335e
Contents?: true
Size: 605 Bytes
Versions: 12
Compression:
Stored size: 605 Bytes
Contents
package org.cx4a.rsense.typing.vertex; import org.jrubyparser.ast.MultipleAsgnNode; import org.cx4a.rsense.typing.Propagation; public class MultipleAsgnVertex extends Vertex { private Vertex valueVertex; public MultipleAsgnVertex(MultipleAsgnNode node, Vertex valueVertex) { super(node); this.valueVertex = valueVertex; } public Vertex getValueVertex() { return valueVertex; } @Override public boolean accept(Propagation propagation, Vertex src) { return propagation.getGraph().propagateMultipleAsgnVertex(propagation, this, src); } }
Version data entries
12 entries across 12 versions & 1 rubygems