Searched defs:Production (Results 1 – 4 of 4) sorted by relevance
26 interface Production { interface
33 public enum Production { enum
45 struct Production { struct46 Tree* tree; // the root of the syntax tree.47 int index; // the current index into the children of the tree.49 WasmOpcode opcode() const { return static_cast<WasmOpcode>(*pc()); } in opcode()50 const byte* pc() const { return tree->pc; } in pc()51 bool done() const { return index >= static_cast<int>(tree->count); } in done()52 Tree* last() const { return index > 0 ? tree->children[index - 1] : nullptr; } in last()
550 class Production: class