pike.git/
src/
builtin.cmod
Branch:
Tag:
Non-build tags
All tags
No tags
2018-11-05
2018-11-05 11:54:44 by Martin Nilsson <nilsson@fastmail.com>
3511aed765500a69f838392889f6688346563d6a (
13
lines) (+
5
/-
8
)
[
Show
|
Annotate
]
Branch:
nilsson/error-names-refactoring
Removed questionable function name on index_error
2619:
if (!end_or_none) { if (index < 0)
-
index_error(
"pike_frame->`[]",
args, NULL, Pike_sp-args,
+
index_error(args, NULL, Pike_sp-args,
"Indexing with negative index (%"PRINTPIKEINT"d)\n", index); else if (index >= numargs)
-
index_error(
"pike_frame->`[]",
args, NULL, Pike_sp-args,
+
index_error(args, NULL, Pike_sp-args,
"Indexing with too large index (%"PRINTPIKEINT"d)\n", index); } else end = end_or_none->u.integer;
2685:
numargs += THIS->args->size; if ((index < -numargs) || (index >= numargs))
-
index_error(
"pike_frame->`[]=",
args, NULL, Pike_sp-args,
+
index_error(args, NULL, Pike_sp-args,
"Index %"PRINTPIKEINT"d is out of array range 0..%d,\n", index, numargs-1); else if (index < 0)
3783:
OBJ2_AUTOMAP_MARKER(real_args[e].u.object)->depth >= d) { if(TYPEOF(tmpargs[e]) != T_ARRAY)
-
index_error(
"__automap__",
-
args,
-
tmpargs,
-
NULL,
-
"Automap on non-array.\n");
+
index_error(args, tmpargs, NULL, "Automap on non-array.\n");
tmp=tmpargs[e].u.array->size; if(tmp < size) size=tmp;