-
Notifications
You must be signed in to change notification settings - Fork 0
Operand
duangsuse edited this page Jan 10, 2018
·
2 revisions
Operand Table (Hashtable<Integer, String>) is designed to store Strings(and serialized Objetcs)
Every EM File should have one Operand table
this Strings could be loaded in VM execution
loadObj <optrid> Loads a string
loadObj (-)<optrid> Loads a serialized Object (Min Compiler won't use this feature)
public abstract class OptrTable {
public Hashtable<Integer, String> value;
//:) ...
}