comparison src/ov-base.h @ 7336:745a8299c2b5

[project @ 2007-12-28 20:56:55 by jwe]
author jwe
date Fri, 28 Dec 2007 20:56:58 +0000
parents cbdee3da62bd
children 402168152bb9
comparison
equal deleted inserted replaced
7335:58f5fab3ebe5 7336:745a8299c2b5
220 220
221 virtual bool is_range (void) const { return false; } 221 virtual bool is_range (void) const { return false; }
222 222
223 virtual bool is_map (void) const { return false; } 223 virtual bool is_map (void) const { return false; }
224 224
225 virtual bool is_object (void) const { return false; }
226
225 virtual bool is_streamoff (void) const { return false; } 227 virtual bool is_streamoff (void) const { return false; }
226 228
227 virtual bool is_cs_list (void) const { return false; } 229 virtual bool is_cs_list (void) const { return false; }
228 230
229 virtual bool is_list (void) const { return false; } 231 virtual bool is_list (void) const { return false; }
285 virtual bool is_function_handle (void) const { return false; } 287 virtual bool is_function_handle (void) const { return false; }
286 288
287 virtual bool is_inline_function (void) const { return false; } 289 virtual bool is_inline_function (void) const { return false; }
288 290
289 virtual bool is_function (void) const { return false; } 291 virtual bool is_function (void) const { return false; }
292
293 virtual bool is_user_script (void) const { return false; }
294
295 virtual bool is_user_function (void) const { return false; }
290 296
291 virtual bool is_builtin_function (void) const { return false; } 297 virtual bool is_builtin_function (void) const { return false; }
292 298
293 virtual bool is_dld_function (void) const { return false; } 299 virtual bool is_dld_function (void) const { return false; }
294 300
484 static int curr_print_indent_level; 490 static int curr_print_indent_level;
485 static bool beginning_of_line; 491 static bool beginning_of_line;
486 492
487 DECLARE_OV_BASE_TYPEID_FUNCTIONS_AND_DATA 493 DECLARE_OV_BASE_TYPEID_FUNCTIONS_AND_DATA
488 }; 494 };
495
496 // If TRUE, turn off printing of results in functions (as if a
497 // semicolon has been appended to each statement).
498 extern bool Vsilent_functions;
489 499
490 // TRUE means to perform automatic sparse to real mutation if there 500 // TRUE means to perform automatic sparse to real mutation if there
491 // is memory to be saved 501 // is memory to be saved
492 extern bool Vsparse_auto_mutate; 502 extern bool Vsparse_auto_mutate;
493 503