
scm.primnode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jasmin Show documentation
Show all versions of jasmin Show documentation
Java Assembler Interface for the Soot framework
package scm;
// Encapsulate a random java class
// as a new type.
class primnode implements Obj
{
Object val;
public Obj eval(Env e) { return this; }
primnode(Object thing) { this.val = thing; }
public String toString() { return val.toString(); }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy