Mercurial > hg > octave-nkf
comparison src/pt-id.h @ 7753:e76a4a6e3c47
initialize args_evaluated; delete useless statement
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sun, 04 May 2008 18:15:07 -0400 |
parents | 40c428ea3408 |
children | 71f068b22fcc |
comparison
equal
deleted
inserted
replaced
7752:40c428ea3408 | 7753:e76a4a6e3c47 |
---|---|
50 : tree_expression (l, c), sym (), scope (-1) { } | 50 : tree_expression (l, c), sym (), scope (-1) { } |
51 | 51 |
52 tree_identifier (const symbol_table::symbol_record& s, | 52 tree_identifier (const symbol_table::symbol_record& s, |
53 int l = -1, int c = -1, | 53 int l = -1, int c = -1, |
54 symbol_table::scope_id sc = symbol_table::current_scope ()) | 54 symbol_table::scope_id sc = symbol_table::current_scope ()) |
55 : tree_expression (l, c), sym (s), scope (sc) | 55 : tree_expression (l, c), sym (s), scope (sc) { } |
56 { | |
57 symbol_table::scope_id curr_scope = symbol_table::current_scope (); | |
58 } | |
59 | 56 |
60 ~tree_identifier (void) { } | 57 ~tree_identifier (void) { } |
61 | 58 |
62 bool has_magic_end (void) const { return (name () == "__end__"); } | 59 bool has_magic_end (void) const { return (name () == "__end__"); } |
63 | 60 |