pike.git / src / operators.c

version» Context lines:

pike.git/src/operators.c:102:    case T_INT:    if (TYPEOF(*ind) == T_STRING && !IS_UNDEFINED (what)) {    INT_TYPE val = what->u.integer;       convert_svalue_to_bignum(what);    index_no_free(to, what, ind);    if(IS_UNDEFINED(to)) {    if (val) {    index_error(NULL, 0, what, ind,    "Indexing the integer %"PRINTPIKEINT"d " -  "with unknown method \"%S\".\n", +  "with unknown method \"%pS\".\n",    val, ind->u.string);    } else {    index_error(NULL, 0, what, ind, NULL);    }    }    break;    }       /* FALLTHRU */