comparison src/pt-exp.h @ 7767:71f068b22fcc

scope and context fixes for function handles
author John W. Eaton <jwe@octave.org>
date Wed, 07 May 2008 13:45:30 -0400
parents 745a8299c2b5
children 5861b95e9879
comparison
equal deleted inserted replaced
7766:fc81e027c53c 7767:71f068b22fcc
45 45
46 virtual ~tree_expression (void) { } 46 virtual ~tree_expression (void) { }
47 47
48 virtual bool has_magic_end (void) const = 0; 48 virtual bool has_magic_end (void) const = 0;
49 49
50 virtual tree_expression *dup (symbol_table::scope_id) = 0; 50 virtual tree_expression *dup (symbol_table::scope_id,
51 symbol_table::context_id context) = 0;
51 52
52 virtual bool is_constant (void) const { return false; } 53 virtual bool is_constant (void) const { return false; }
53 54
54 virtual bool is_matrix_constant (void) const { return false; } 55 virtual bool is_matrix_constant (void) const { return false; }
55 56