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

#include "pt-idx.h"

Inheritance diagram for tree_index_expression:
Collaboration diagram for tree_index_expression:

Public Member Functions

 tree_index_expression (const tree_index_expression &)=delete
 
 tree_index_expression (tree_expression *e, const std::string &n, int l=-1, int c=-1)
 
 tree_index_expression (tree_expression *e, tree_expression *df, int l=-1, int c=-1)
 
 tree_index_expression (tree_expression *e=nullptr, tree_argument_list *lst=nullptr, int l=-1, int c=-1, char t='(')
 
 ~tree_index_expression (void)
 
void accept (tree_walker &tw)
 
tree_index_expressionappend (const std::string &n)
 
tree_index_expressionappend (tree_argument_list *lst=nullptr, char t='(')
 
tree_index_expressionappend (tree_expression *df)
 
std::list< tree_argument_list * > arg_lists (void)
 
std::list< string_vectorarg_names (void)
 
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_index_expressiondup (symbol_scope &scope) const
 
std::list< tree_expression * > dyn_fields (void)
 
octave_value evaluate (tree_evaluator &tw, int nargout=1)
 
octave_value_list evaluate_n (tree_evaluator &tw, int nargout=1)
 
tree_expressionexpression (void)
 
std::string get_struct_index (tree_evaluator &tw, std::list< string_vector >::const_iterator p_arg_nm, std::list< tree_expression * >::const_iterator p_dyn_field) const
 
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_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
 
virtual bool is_identifier (void) const
 
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
 
bool is_word_list_cmd (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)
 
tree_expressionmark_in_parens (void)
 
void mark_word_list_cmd (void)
 
bool meets_bp_condition (tree_evaluator &tw) const
 
std::string name (void) const
 
virtual std::string oper (void) const
 
tree_index_expressionoperator= (const tree_index_expression &)=delete
 
virtual std::string original_text (void) const
 
int paren_count (void) const
 
char postfix_index (void) const
 
bool print_result (void) const
 
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)
 
std::string str_print_code (void)
 
std::string type_tags (void)
 

Protected Attributes

bool m_for_cmd_expr
 
int m_num_parens
 
char m_postfix_index_type
 
bool m_print_flag
 

Private Member Functions

 tree_index_expression (int l, int c)
 
octave_map make_arg_struct (void) const
 

Private Attributes

std::list< string_vectorm_arg_nm
 
std::list< tree_argument_list * > m_args
 
std::string * m_bp_cond
 
int m_column_num
 
std::list< tree_expression * > m_dyn_field
 
tree_expressionm_expr
 
int m_line_num
 
std::string m_type
 
bool m_word_list_cmd
 

Detailed Description

Definition at line 51 of file pt-idx.h.

Constructor & Destructor Documentation

◆ tree_index_expression() [1/5]

tree_index_expression::tree_index_expression ( tree_expression e = nullptr,
tree_argument_list lst = nullptr,
int  l = -1,
int  c = -1,
char  t = '(' 
)

Definition at line 53 of file pt-idx.cc.

References append().

Referenced by dup().

◆ tree_index_expression() [2/5]

tree_index_expression::tree_index_expression ( tree_expression e,
const std::string &  n,
int  l = -1,
int  c = -1 
)

Definition at line 62 of file pt-idx.cc.

References append(), and n.

◆ tree_index_expression() [3/5]

tree_index_expression::tree_index_expression ( tree_expression e,
tree_expression df,
int  l = -1,
int  c = -1 
)

Definition at line 71 of file pt-idx.cc.

References append().

◆ tree_index_expression() [4/5]

tree_index_expression::tree_index_expression ( const tree_index_expression )
delete

◆ ~tree_index_expression()

tree_index_expression::~tree_index_expression ( void  )

Definition at line 116 of file pt-idx.cc.

References m_args, m_dyn_field, and m_expr.

◆ tree_index_expression() [5/5]

tree_index_expression::tree_index_expression ( int  l,
int  c 
)
private

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

Member Function Documentation

◆ accept()

void tree_index_expression::accept ( tree_walker tw)
inlinevirtual

Implements tree.

Definition at line 115 of file pt-idx.h.

References tree_walker::visit_index_expression().

◆ append() [1/3]

tree_index_expression * tree_index_expression::append ( const std::string &  n)

Definition at line 95 of file pt-idx.cc.

References m_arg_nm, m_args, m_dyn_field, m_type, and n.

◆ append() [2/3]

◆ append() [3/3]

tree_index_expression * tree_index_expression::append ( tree_expression df)

Definition at line 106 of file pt-idx.cc.

References m_arg_nm, m_args, m_dyn_field, and m_type.

◆ arg_lists()

std::list<tree_argument_list *> tree_index_expression::arg_lists ( void  )
inline

Definition at line 86 of file pt-idx.h.

References m_args.

Referenced by tree_print_code::visit_index_expression(), and tree_walker::visit_index_expression().

◆ arg_names()

std::list<string_vector> tree_index_expression::arg_names ( void  )
inline

Definition at line 90 of file pt-idx.h.

References m_arg_nm.

Referenced by tree_print_code::visit_index_expression(), and tree_walker::visit_index_expression().

◆ 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_index_expression * tree_index_expression::dup ( symbol_scope scope) const
virtual

◆ dyn_fields()

std::list<tree_expression *> tree_index_expression::dyn_fields ( void  )
inline

Definition at line 92 of file pt-idx.h.

References m_dyn_field.

Referenced by tree_print_code::visit_index_expression(), and tree_walker::visit_index_expression().

◆ evaluate()

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

Implements tree_expression.

Definition at line 106 of file pt-idx.h.

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

◆ evaluate_n()

◆ expression()

tree_expression* tree_index_expression::expression ( void  )
inline

◆ get_struct_index()

std::string tree_index_expression::get_struct_index ( tree_evaluator tw,
std::list< string_vector >::const_iterator  p_arg_nm,
std::list< tree_expression * >::const_iterator  p_dyn_field 
) const

Definition at line 145 of file pt-idx.cc.

References tree_expression::evaluate(), panic_impossible, and octave_value::xstring_value().

Referenced by evaluate_n(), and lvalue().

◆ 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_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()

◆ is_index_expression()

bool tree_index_expression::is_index_expression ( void  ) const
inlinevirtual

Reimplemented from tree_expression.

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

◆ 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().

◆ is_word_list_cmd()

bool tree_index_expression::is_word_list_cmd ( void  ) const
inline

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

References m_word_list_cmd.

Referenced by evaluate_n(), and parse_tree_validator::visit_index_expression().

◆ 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(), tree_identifier::dup(), dup(), tree_matrix::dup(), tree_prefix_expression::dup(), tree_postfix_expression::dup(), anon_fcn_validator::error(), tree_identifier::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()

◆ lvalue_ok()

bool tree_index_expression::lvalue_ok ( void  ) const
inlinevirtual

Reimplemented from tree_expression.

Definition at line 98 of file pt-idx.h.

References tree_expression::lvalue_ok(), and m_expr.

◆ make_arg_struct()

octave_map tree_index_expression::make_arg_struct ( void  ) const
private

◆ 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_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.

◆ mark_word_list_cmd()

void tree_index_expression::mark_word_list_cmd ( void  )
inline

Definition at line 94 of file pt-idx.h.

References m_word_list_cmd.

◆ meets_bp_condition()

bool tree::meets_bp_condition ( tree_evaluator tw) const
inherited

◆ name()

std::string tree_index_expression::name ( void  ) const
virtual

Reimplemented from tree_expression.

Definition at line 139 of file pt-idx.cc.

References m_expr, and tree_expression::name().

Referenced by tree_argument_list::variable_names(), and parse_tree_validator::visit_index_expression().

◆ oper()

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

◆ operator=()

tree_index_expression& tree_index_expression::operator= ( const tree_index_expression )
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 tree_identifier::evaluate_n().

◆ print_result()

◆ rvalue_ok()

bool tree_index_expression::rvalue_ok ( void  ) const
inlinevirtual

Reimplemented from tree_expression.

Definition at line 100 of file pt-idx.h.

◆ 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

◆ 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().

◆ type_tags()

std::string tree_index_expression::type_tags ( void  )
inline

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

References m_type.

Referenced by tree_print_code::visit_index_expression(), and tree_walker::visit_index_expression().

Member Data Documentation

◆ m_arg_nm

std::list<string_vector> tree_index_expression::m_arg_nm
private

Definition at line 138 of file pt-idx.h.

Referenced by append(), arg_names(), dup(), evaluate_n(), and lvalue().

◆ m_args

std::list<tree_argument_list *> tree_index_expression::m_args
private

Definition at line 131 of file pt-idx.h.

Referenced by ~tree_index_expression(), append(), arg_lists(), dup(), evaluate_n(), and lvalue().

◆ 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_dyn_field

std::list<tree_expression *> tree_index_expression::m_dyn_field
private

Definition at line 141 of file pt-idx.h.

Referenced by ~tree_index_expression(), append(), dup(), dyn_fields(), evaluate_n(), and lvalue().

◆ m_expr

tree_expression* tree_index_expression::m_expr
private

Definition at line 128 of file pt-idx.h.

Referenced by ~tree_index_expression(), dup(), evaluate_n(), expression(), lvalue(), lvalue_ok(), and name().

◆ 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_type

std::string tree_index_expression::m_type
private

Definition at line 134 of file pt-idx.h.

Referenced by append(), dup(), evaluate_n(), lvalue(), and type_tags().

◆ m_word_list_cmd

bool tree_index_expression::m_word_list_cmd
private

Definition at line 144 of file pt-idx.h.

Referenced by is_word_list_cmd(), and mark_word_list_cmd().


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