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

#include "pt-fcn-handle.h"

Inheritance diagram for tree_anon_fcn_handle:
Collaboration diagram for tree_anon_fcn_handle:

Public Member Functions

 tree_anon_fcn_handle (const tree_anon_fcn_handle &)=delete
 
 tree_anon_fcn_handle (int l=-1, int c=-1)
 
 tree_anon_fcn_handle (tree_parameter_list *pl, tree_expression *ex, const symbol_scope &scope, const symbol_scope &parent_scope, int l=-1, int c=-1)
 
 ~tree_anon_fcn_handle (void)
 
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_expressiondup (symbol_scope &scope) const
 
octave_value evaluate (tree_evaluator &tw, int nargout=1)
 
octave_value_list evaluate_n (tree_evaluator &tw, int nargout=1)
 
tree_expressionexpression (void) const
 
std::string file_name (void) const
 
bool has_parent_scope (void) 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
 
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
 
virtual octave_lvalue lvalue (tree_evaluator &)
 
virtual bool lvalue_ok (void) const
 
void mark_as_for_cmd_expr (void)
 
tree_expressionmark_in_parens (void)
 
bool meets_bp_condition (tree_evaluator &tw) const
 
virtual std::string name (void) const
 
virtual std::string oper (void) const
 
tree_anon_fcn_handleoperator= (const tree_anon_fcn_handle &)=delete
 
virtual std::string original_text (void) const
 
tree_parameter_listparameter_list (void) const
 
int paren_count (void) const
 
symbol_scope parent_scope (void) const
 
char postfix_index (void) const
 
bool print_result (void) const
 
bool rvalue_ok (void) const
 
symbol_scope scope (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 stash_file_name (const std::string &file)
 
std::string str_print_code (void)
 

Protected Attributes

bool m_for_cmd_expr
 
int m_num_parens
 
char m_postfix_index_type
 
bool m_print_flag
 

Private Attributes

std::string * m_bp_cond
 
int m_column_num
 
tree_expressionm_expression
 
std::string m_file_name
 
int m_line_num
 
tree_parameter_listm_parameter_list
 
symbol_scope m_parent_scope
 
symbol_scope m_scope
 

Detailed Description

Definition at line 96 of file pt-fcn-handle.h.

Constructor & Destructor Documentation

◆ tree_anon_fcn_handle() [1/3]

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

Definition at line 100 of file pt-fcn-handle.h.

Referenced by dup().

◆ tree_anon_fcn_handle() [2/3]

tree_anon_fcn_handle::tree_anon_fcn_handle ( tree_parameter_list pl,
tree_expression ex,
const symbol_scope scope,
const symbol_scope parent_scope,
int  l = -1,
int  c = -1 
)
inline

Definition at line 106 of file pt-fcn-handle.h.

◆ tree_anon_fcn_handle() [3/3]

tree_anon_fcn_handle::tree_anon_fcn_handle ( const tree_anon_fcn_handle )
delete

◆ ~tree_anon_fcn_handle()

tree_anon_fcn_handle::~tree_anon_fcn_handle ( void  )

Definition at line 69 of file pt-fcn-handle.cc.

References m_expression, and m_parameter_list.

Member Function Documentation

◆ accept()

void tree_anon_fcn_handle::accept ( tree_walker tw)
inlinevirtual

Implements tree.

Definition at line 146 of file pt-fcn-handle.h.

References tree_walker::visit_anon_fcn_handle().

Referenced by base_parser::make_anon_fcn_handle().

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

◆ evaluate()

octave_value tree_anon_fcn_handle::evaluate ( tree_evaluator tw,
int  nargout = 1 
)
virtual

Implements tree_expression.

Definition at line 102 of file pt-fcn-handle.cc.

References tree_evaluator::evaluate_anon_fcn_handle().

Referenced by evaluate_n().

◆ evaluate_n()

octave_value_list tree_anon_fcn_handle::evaluate_n ( tree_evaluator tw,
int  nargout = 1 
)
inlinevirtual

Implements tree_expression.

Definition at line 141 of file pt-fcn-handle.h.

References evaluate(), and ovl().

◆ expression()

tree_expression* tree_anon_fcn_handle::expression ( void  ) const
inline

◆ file_name()

std::string tree_anon_fcn_handle::file_name ( void  ) const
inline

Definition at line 150 of file pt-fcn-handle.h.

References m_file_name.

◆ has_parent_scope()

bool tree_anon_fcn_handle::has_parent_scope ( void  ) const
inline

Definition at line 135 of file pt-fcn-handle.h.

References symbol_scope::is_valid(), and m_parent_scope.

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

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(), dup(), tree_identifier::dup(), tree_index_expression::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()

virtual bool tree_expression::lvalue_ok ( void  ) const
inlinevirtualinherited

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

◆ meets_bp_condition()

bool tree::meets_bp_condition ( tree_evaluator tw) const
inherited

◆ name()

◆ oper()

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

◆ operator=()

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

◆ parameter_list()

tree_parameter_list* tree_anon_fcn_handle::parameter_list ( void  ) const
inline

◆ paren_count()

int tree_expression::paren_count ( void  ) const
inlineinherited

◆ parent_scope()

symbol_scope tree_anon_fcn_handle::parent_scope ( void  ) const
inline

Definition at line 133 of file pt-fcn-handle.h.

References m_parent_scope.

◆ 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_anon_fcn_handle::rvalue_ok ( void  ) const
inlinevirtual

Reimplemented from tree_expression.

Definition at line 122 of file pt-fcn-handle.h.

◆ scope()

symbol_scope tree_anon_fcn_handle::scope ( void  ) const
inline

Definition at line 131 of file pt-fcn-handle.h.

References m_scope.

Referenced by tree_evaluator::evaluate_anon_fcn_handle().

◆ 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

◆ stash_file_name()

void tree_anon_fcn_handle::stash_file_name ( const std::string &  file)
inline

Definition at line 148 of file pt-fcn-handle.h.

References m_file_name.

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

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_expression

tree_expression* tree_anon_fcn_handle::m_expression
private

Definition at line 158 of file pt-fcn-handle.h.

Referenced by ~tree_anon_fcn_handle(), and expression().

◆ m_file_name

std::string tree_anon_fcn_handle::m_file_name
private

Definition at line 167 of file pt-fcn-handle.h.

Referenced by file_name(), and stash_file_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_parameter_list

tree_parameter_list* tree_anon_fcn_handle::m_parameter_list
private

Definition at line 155 of file pt-fcn-handle.h.

Referenced by ~tree_anon_fcn_handle(), and parameter_list().

◆ m_parent_scope

symbol_scope tree_anon_fcn_handle::m_parent_scope
private

Definition at line 164 of file pt-fcn-handle.h.

Referenced by dup(), has_parent_scope(), and parent_scope().

◆ m_postfix_index_type

char tree_expression::m_postfix_index_type
protectedinherited

◆ m_print_flag

bool tree_expression::m_print_flag
protectedinherited

◆ m_scope

symbol_scope tree_anon_fcn_handle::m_scope
private

Definition at line 161 of file pt-fcn-handle.h.

Referenced by dup(), and scope().


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