Skip to content

Operand

duangsuse edited this page Jan 10, 2018 · 2 revisions

Operand Table

WTF is this 🌚

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)

OptrTable class

public abstract class OptrTable {
  public Hashtable<Integer, String> value;

  //:) ...
}
Clone this wiki locally