pike.git
/
src
/
builtin.cmod
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/builtin.cmod:2448:
} #endif assign_svalue(&THIS->_fun, val); } /*! @decl int(0..1) _is_type(string t) *! This object claims to be an array for backward compatibility. */ PIKEFUN int(0..1) _is_type(string t) {
-
RETURN (t ==
findstring("
array
"
)
)
;
+
RETURN (t ==
literal_
array
_string
);
} static void fill_in_file_and_line() { struct pike_string *file = NULL; assert (THIS->lineno == -1); if (THIS->pc && THIS->prog) { file = low_get_line(THIS->pc, THIS->prog, &THIS->lineno); THIS->pc = NULL;