GNU Octave  8.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
tree_identifier Class Reference

#include "pt-id.h"

Inheritance diagram for tree_identifier:
Collaboration diagram for tree_identifier:

Public Member Functions

 tree_identifier (const symbol_record &s, int l=-1, int c=-1)
 
 tree_identifier (const tree_identifier &)=delete
 
 tree_identifier (int l=-1, int c=-1)
 
 ~tree_identifier (void)=default
 
void accept (tree_walker &tw)
 
const std::string bp_cond (void) const
 
void column (int c)
 
virtual int column (void) const
 
virtual void copy_base (const tree_expression &e)
 
virtual void delete_breakpoint (void)
 
tree_identifierdup (symbol_scope &scope) const
 
void eval_undefined_error (void)
 
octave_value evaluate (tree_evaluator &tw, int nargout=1)
 
octave_value_list evaluate_n (tree_evaluator &tw, int nargout=1)
 
bool is_active_breakpoint (tree_evaluator &tw) const
 
virtual bool is_assignment_expression (void) const
 
virtual bool is_binary_expression (void) const
 
virtual bool is_black_hole (void) const
 
virtual bool is_boolean_expression (void) const
 
bool is_breakpoint (void) const
 
virtual bool is_colon_expression (void) const
 
virtual bool is_constant (void) const
 
bool is_for_cmd_expr (void) const
 
bool is_identifier (void) const
 
virtual bool is_index_expression (void) const
 
virtual bool is_matrix (void) const
 
bool is_postfix_indexed (void) const
 
virtual bool is_prefix_expression (void) const
 
virtual bool is_unary_expression (void) const
 
virtual bool iscell (void) const
 
void line (int l)
 
virtual int line (void) const
 
octave_lvalue lvalue (tree_evaluator &tw)
 
bool lvalue_ok (void) const
 
void mark_as_for_cmd_expr (void)
 
void mark_as_formal_parameter (void)
 
tree_expressionmark_in_parens (void)
 
bool meets_bp_condition (tree_evaluator &tw) const
 
std::string name (void) const
 
virtual std::string oper (void) const
 
tree_identifieroperator= (const tree_identifier &)=delete
 
virtual std::string original_text (void) const
 
int paren_count (void) const
 
char postfix_index (void) const
 
bool print_result (void) const
 
virtual bool rvalue_ok (void) const
 
virtual void set_breakpoint (const std::string &condition)
 
void set_location (int l, int c)
 
tree_expressionset_postfix_index (char type)
 
tree_expressionset_print_flag (bool print)
 
void static_workspace_error (void)
 
std::string str_print_code (void)
 
symbol_record symbol (void) const
 

Protected Attributes

bool m_for_cmd_expr
 
int m_num_parens
 
char m_postfix_index_type
 
bool m_print_flag
 
symbol_record m_sym
 

Private Attributes

std::string * m_bp_cond
 
int m_column_num
 
int m_line_num
 

Friends

class tree_index_expression
 

Detailed Description

Definition at line 50 of file pt-id.h.

Constructor & Destructor Documentation

◆ tree_identifier() [1/3]

tree_identifier::tree_identifier ( int  l = -1,
int  c = -1 
)
inline

Definition at line 56 of file pt-id.h.

Referenced by dup().

◆ tree_identifier() [2/3]

tree_identifier::tree_identifier ( const symbol_record s,
int  l = -1,
int  c = -1 
)
inline

Definition at line 59 of file pt-id.h.

◆ tree_identifier() [3/3]

tree_identifier::tree_identifier ( const tree_identifier )
delete

◆ ~tree_identifier()

tree_identifier::~tree_identifier ( void  )
default

Member Function Documentation

◆ accept()

◆ bp_cond()

const std::string tree::bp_cond ( void  ) const
inlineinherited

Definition at line 106 of file pt.h.

References tree::m_bp_cond.

Referenced by tree_statement::bp_cond(), and tree_breakpoint::take_action().

◆ column() [1/2]

void tree::column ( int  c)
inlineinherited

Definition at line 66 of file pt.h.

References tree::m_column_num.

◆ column() [2/2]

◆ copy_base()

◆ delete_breakpoint()

virtual void tree::delete_breakpoint ( void  )
inlinevirtualinherited

Reimplemented in tree_statement.

Definition at line 82 of file pt.h.

References tree::m_bp_cond.

Referenced by tree_statement::delete_breakpoint(), and tree_breakpoint::take_action().

◆ dup()

tree_identifier * tree_identifier::dup ( symbol_scope scope) const
virtual

◆ eval_undefined_error()

void tree_identifier::eval_undefined_error ( void  )

Definition at line 45 of file pt-id.cc.

References tree::column(), error_with_id(), tree::line(), maybe_missing_function_hook(), and name().

Referenced by evaluate_n().

◆ evaluate()

octave_value tree_identifier::evaluate ( tree_evaluator tw,
int  nargout = 1 
)
inlinevirtual

Implements tree_expression.

Definition at line 96 of file pt-id.h.

References evaluate_n(), octave_value_list::length(), and octave_value().

Referenced by tree_evaluator::evaluate().

◆ evaluate_n()

◆ is_active_breakpoint()

◆ is_assignment_expression()

virtual bool tree_expression::is_assignment_expression ( void  ) const
inlinevirtualinherited

◆ is_binary_expression()

virtual bool tree_expression::is_binary_expression ( void  ) const
inlinevirtualinherited

Reimplemented in tree_binary_expression.

Definition at line 80 of file pt-exp.h.

Referenced by base_parser::maybe_convert_to_braindead_shortcircuit().

◆ is_black_hole()

virtual bool tree_identifier::is_black_hole ( void  ) const
inlinevirtual

Reimplemented in tree_black_hole.

Definition at line 75 of file pt-id.h.

Referenced by tree_evaluator::is_variable(), and base_parser::validate_param_list().

◆ is_boolean_expression()

virtual bool tree_expression::is_boolean_expression ( void  ) const
inlinevirtualinherited

Reimplemented in tree_boolean_expression.

Definition at line 82 of file pt-exp.h.

◆ is_breakpoint()

bool tree::is_breakpoint ( void  ) const
inlineinherited

Definition at line 94 of file pt.h.

References tree::m_bp_cond.

Referenced by tree_statement::is_breakpoint(), and tree_breakpoint::take_action().

◆ is_colon_expression()

virtual bool tree_expression::is_colon_expression ( void  ) const
inlinevirtualinherited

Reimplemented in tree_colon_expression.

Definition at line 84 of file pt-exp.h.

◆ is_constant()

virtual bool tree_expression::is_constant ( void  ) const
inlinevirtualinherited

◆ is_for_cmd_expr()

bool tree_expression::is_for_cmd_expr ( void  ) const
inlineinherited

Definition at line 112 of file pt-exp.h.

References tree_expression::m_for_cmd_expr.

Referenced by tree_colon_expression::evaluate().

◆ is_identifier()

bool tree_identifier::is_identifier ( void  ) const
inlinevirtual

Reimplemented from tree_expression.

Definition at line 71 of file pt-id.h.

◆ is_index_expression()

virtual bool tree_expression::is_index_expression ( void  ) const
inlinevirtualinherited

◆ is_matrix()

virtual bool tree_expression::is_matrix ( void  ) const
inlinevirtualinherited

Reimplemented in tree_matrix.

Definition at line 66 of file pt-exp.h.

Referenced by base_parser::validate_array_list(), and base_parser::validate_matrix_for_assignment().

◆ is_postfix_indexed()

bool tree_expression::is_postfix_indexed ( void  ) const
inlineinherited

◆ is_prefix_expression()

virtual bool tree_expression::is_prefix_expression ( void  ) const
inlinevirtualinherited

Definition at line 76 of file pt-exp.h.

◆ is_unary_expression()

virtual bool tree_expression::is_unary_expression ( void  ) const
inlinevirtualinherited

Reimplemented in tree_unary_expression.

Definition at line 78 of file pt-exp.h.

Referenced by strip_trans_herm().

◆ iscell()

virtual bool tree_expression::iscell ( void  ) const
inlinevirtualinherited

Reimplemented in tree_cell.

Definition at line 68 of file pt-exp.h.

◆ line() [1/2]

void tree::line ( int  l)
inlineinherited

Definition at line 64 of file pt.h.

References tree::m_line_num.

◆ line() [2/2]

virtual int tree::line ( void  ) const
inlinevirtualinherited

Reimplemented in tree_statement.

Definition at line 60 of file pt.h.

References tree::m_line_num.

Referenced by tree_binary_expression::dup(), tree_braindead_shortcircuit_binary_expression::dup(), tree_boolean_expression::dup(), tree_cell::dup(), tree_superclass_ref::dup(), tree_metaclass_query::dup(), tree_colon_expression::dup(), tree_constant::dup(), tree_fcn_handle::dup(), tree_anon_fcn_handle::dup(), dup(), tree_index_expression::dup(), tree_matrix::dup(), tree_prefix_expression::dup(), tree_postfix_expression::dup(), anon_fcn_validator::error(), eval_undefined_error(), base_parser::finish_if_command(), base_parser::finish_switch_command(), tree_evaluator::is_logically_true(), tree_statement::line(), base_parser::make_colon_expression(), base_parser::make_fcn_name(), base_parser::make_index_expression(), base_parser::make_indirect_ref(), base_parser::maybe_convert_to_braindead_shortcircuit(), base_parser::maybe_warn_assign_as_truth_value(), base_parser::maybe_warn_variable_switch_label(), tree_breakpoint::take_action(), tree_checker::visit_argument_list(), tree_breakpoint::visit_break_command(), tree_evaluator::visit_break_command(), tree_breakpoint::visit_complex_for_command(), tree_checker::visit_complex_for_command(), tree_evaluator::visit_complex_for_command(), tree_breakpoint::visit_continue_command(), tree_evaluator::visit_continue_command(), tree_breakpoint::visit_decl_command(), tree_evaluator::visit_decl_command(), tree_breakpoint::visit_do_until_command(), tree_evaluator::visit_do_until_command(), tree_evaluator::visit_if_command(), parse_tree_validator::visit_index_expression(), tree_breakpoint::visit_no_op_command(), tree_evaluator::visit_no_op_command(), tree_breakpoint::visit_return_command(), tree_evaluator::visit_return_command(), tree_checker::visit_simple_assignment(), tree_breakpoint::visit_simple_for_command(), tree_checker::visit_simple_for_command(), tree_evaluator::visit_simple_for_command(), tree_breakpoint::visit_switch_command(), tree_evaluator::visit_switch_command(), tree_checker::visit_try_catch_command(), tree_evaluator::visit_try_catch_command(), tree_evaluator::visit_unwind_protect_command(), tree_breakpoint::visit_while_command(), and tree_evaluator::visit_while_command().

◆ lvalue()

octave_lvalue tree_identifier::lvalue ( tree_evaluator tw)
virtual

◆ lvalue_ok()

bool tree_identifier::lvalue_ok ( void  ) const
inlinevirtual

Reimplemented from tree_expression.

Definition at line 82 of file pt-id.h.

Referenced by tree_decl_elt::lvalue_ok(), and tree_checker::visit_try_catch_command().

◆ mark_as_for_cmd_expr()

void tree_expression::mark_as_for_cmd_expr ( void  )
inlineinherited

Definition at line 110 of file pt-exp.h.

References tree_expression::m_for_cmd_expr.

Referenced by base_parser::make_for_command().

◆ mark_as_formal_parameter()

void tree_identifier::mark_as_formal_parameter ( void  )
inline

Definition at line 77 of file pt-id.h.

References m_sym, and symbol_record::mark_formal().

Referenced by tree_decl_elt::mark_as_formal_parameter().

◆ mark_in_parens()

tree_expression* tree_expression::mark_in_parens ( void  )
inlineinherited

Definition at line 114 of file pt-exp.h.

References tree_expression::m_num_parens.

◆ meets_bp_condition()

bool tree::meets_bp_condition ( tree_evaluator tw) const
inherited

◆ name()

std::string tree_identifier::name ( void  ) const
inlinevirtual

◆ oper()

virtual std::string tree_expression::oper ( void  ) const
inlinevirtualinherited

◆ operator=()

tree_identifier& tree_identifier::operator= ( const tree_identifier )
delete

◆ original_text()

std::string tree_expression::original_text ( void  ) const
virtualinherited

Reimplemented in tree_constant.

Definition at line 49 of file pt-exp.cc.

◆ paren_count()

int tree_expression::paren_count ( void  ) const
inlineinherited

◆ postfix_index()

char tree_expression::postfix_index ( void  ) const
inlineinherited

Definition at line 97 of file pt-exp.h.

References tree_expression::m_postfix_index_type.

Referenced by evaluate_n().

◆ print_result()

bool tree_expression::print_result ( void  ) const
inlineinherited

◆ rvalue_ok()

◆ set_breakpoint()

virtual void tree::set_breakpoint ( const std::string &  condition)
inlinevirtualinherited

Reimplemented in tree_statement.

Definition at line 74 of file pt.h.

References tree::m_bp_cond.

Referenced by tree_statement::set_breakpoint(), and tree_breakpoint::take_action().

◆ set_location()

void tree::set_location ( int  l,
int  c 
)
inlineinherited

Definition at line 68 of file pt.h.

References tree::m_column_num, and tree::m_line_num.

Referenced by base_parser::finish_array_list(), and tree_statement::set_location().

◆ set_postfix_index()

tree_expression* tree_expression::set_postfix_index ( char  type)
inlineinherited

◆ set_print_flag()

tree_expression* tree_expression::set_print_flag ( bool  print)
inlineinherited

◆ static_workspace_error()

void tree_identifier::static_workspace_error ( void  )
inline

Definition at line 88 of file pt-id.h.

References error(), and name().

Referenced by evaluate_n(), and lvalue().

◆ str_print_code()

std::string tree::str_print_code ( void  )
inherited

Definition at line 46 of file pt.cc.

References tree::accept().

Referenced by tree_argument_list::get_arg_names().

◆ symbol()

symbol_record tree_identifier::symbol ( void  ) const
inline

Friends And Related Function Documentation

◆ tree_index_expression

friend class tree_index_expression
friend

Definition at line 52 of file pt-id.h.

Member Data Documentation

◆ m_bp_cond

std::string* tree::m_bp_cond
privateinherited

◆ m_column_num

int tree::m_column_num
privateinherited

Definition at line 120 of file pt.h.

Referenced by tree::column(), and tree::set_location().

◆ m_for_cmd_expr

bool tree_expression::m_for_cmd_expr
protectedinherited

◆ m_line_num

int tree::m_line_num
privateinherited

Definition at line 119 of file pt.h.

Referenced by tree::line(), and tree::set_location().

◆ m_num_parens

int tree_expression::m_num_parens
protectedinherited

◆ m_postfix_index_type

char tree_expression::m_postfix_index_type
protectedinherited

◆ m_print_flag

bool tree_expression::m_print_flag
protectedinherited

◆ m_sym

symbol_record tree_identifier::m_sym
protected

The documentation for this class was generated from the following files: