pike.git
/
src
/
program.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.c:8694:
{ if(get_master()) { APPLY_MASTER("handle_inherit", args); } else { pop_n_elems(args); push_undefined(); } }
-
/*
!
@decl int filter_exception(SeverityLevel level, mixed err)
-
*
!
-
*
!
The default implementation calls
-
*
!
@[MasterObject()->compile_exception()] for @[level] @[ERROR]
-
*
!
and @[FATAL].
-
*
!
-
*
!
@note
-
*
!
This function is not implemented in Pike 7.8.
-
*
!
-
*
!
@seealso
-
*
!
@[MasterObject()->compile_exception()].
+
#if 0
+
/* @decl int filter_exception(SeverityLevel level, mixed err)
+
*
+
* The default implementation calls
+
* @[MasterObject()->compile_exception()] for @[level] @[ERROR]
+
* and @[FATAL].
+
*
+
* @note
+
* This function is not implemented in Pike 7.8.
+
*
+
* @seealso
+
* @[MasterObject()->compile_exception()].
*/ static void f_compilation_env_filter_exception(INT32 args) { int level; struct svalue *err; get_all_args("filter_exception", args, "%d%*", &level, &err); if (args > 2) { pop_n_elems(args-2); args = 2;
pike.git/src/program.c:8734:
Inside #if 0
push_string(format_exception_for_error_msg(err)); /* FIXME! */ } } #endif pop_n_elems(args); push_undefined(); return; }
+
#endif
/*! @class PikeCompiler *! *! The Pike compiler. *! *! An object of this class compiles a single string *! of Pike code. */ static void free_compilation(struct compilation *c)