package code type Op uint8 const ( OpNop Op = iota OpHalt OpPushInt OpPushFloat OpPushString OpPushTrue OpPushFalse OpPushNull OpPushArray OpPushFunction OpPushObject OpPushType OpDrop OpGetGlobal OpGetLocal OpSetLocal OpGetMember OpSetMember OpGetEnv OpSetEnv OpAddToEnv OpAnchorType OpAdd OpSub OpMod OpIndex OpLte OpCall OpJmp OpJt OpJf OpRet // Temporary operations, which will be removed with the advent of methods. OpTempArrLen OpTempArrPush )