Searched defs:OpCode (Results 1 – 2 of 2) sorted by relevance
18 struct OpCode { struct19 OpCode() : opCode(0), size(0) {} in OpCode() function21 …OpCode(uint8_t code, uint32_t s, std::string str) : opCode(code), size(s), opStr(std::move(str)) {} in OpCode() argument25 uint8_t opCode;26 uint32_t size;27 const std::string opStr;
385 uint8_t AstObject::OpCode() in OpCode() function in AstObject