Go to the source code of this file.
Defines | |
| #define | VALUE_INFERENCE(wanted_type, retval, arg) |
|
|
Value: ({\
register gboolean __retok;\
\
switch(wanted_type)\
{\
case T_INT : __retok = int_inference(retval, arg); break;\
case T_FLOAT : __retok = float_inference(retval, arg); break;\
case T_BOOL : __retok = bool_inference(retval, arg); break;\
case T_STRING: __retok = string_inference(retval, arg); break;\
default : __retok = NULL;\
}\
\
__retok;\
}) |
1.2.15