codearith         696 lib/lua/lcode.c       codearith(fs, OP_UNM, e, &e2);
codearith         702 lib/lua/lcode.c       codearith(fs, OP_LEN, e, &e2);
codearith         763 lib/lua/lcode.c         codearith(fs, OP_CONCAT, e1, e2);
codearith         767 lib/lua/lcode.c     case OPR_ADD: codearith(fs, OP_ADD, e1, e2); break;
codearith         768 lib/lua/lcode.c     case OPR_SUB: codearith(fs, OP_SUB, e1, e2); break;
codearith         769 lib/lua/lcode.c     case OPR_MUL: codearith(fs, OP_MUL, e1, e2); break;
codearith         770 lib/lua/lcode.c     case OPR_DIV: codearith(fs, OP_DIV, e1, e2); break;
codearith         771 lib/lua/lcode.c     case OPR_MOD: codearith(fs, OP_MOD, e1, e2); break;
codearith         772 lib/lua/lcode.c     case OPR_POW: codearith(fs, OP_POW, e1, e2); break;