pike.git
/
src
/
program.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.c:8519:
args = 1; if (TYPEOF(Pike_sp[-1]) != T_OBJECT) { Pike_error("Bad return value from PikeCompiler().\n"); } apply(Pike_sp[-1].u.object, "compile", 0); stack_pop_n_elems_keep_top(args); } /*! @decl mixed resolv(string identifier, string filename, @ *! object|void handler)
+
*!
+
*! Look up @[identifier] in the current context.
+
*!
+
*! The default implementation calls the corresponding
+
*! function in the master object.
*/ static void f_compilation_env_resolv(INT32 args) { struct pike_string *ident; struct pike_string *filename; struct object *handler = NULL; get_all_args("resolv", args, "%W%W.%O", &ident, &filename, &handler);