Sha256: 5990d3b786d97884c84216eb422dc3d1f48bcf9be45aee5ca2537804b7ce6951
Contents?: true
Size: 560 Bytes
Versions: 12
Compression:
Stored size: 560 Bytes
Contents
package org.cx4a.rsense.typing.vertex; import org.jrubyparser.ast.Node; import org.cx4a.rsense.typing.Propagation; public class SValueVertex extends Vertex { Vertex vertex; public SValueVertex(Node node, Vertex vertex) { super(node); this.vertex = vertex; vertex.addEdge(this); } public Vertex getValueVertex() { return vertex; } @Override public boolean accept(Propagation propagation, Vertex src) { return propagation.getGraph().propagateSValueVertex(propagation, this, src); } }
Version data entries
12 entries across 12 versions & 1 rubygems