GNU Octave 7.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
anon-fcn-validator.cc
Go to the documentation of this file.
1////////////////////////////////////////////////////////////////////////
2//
3// Copyright (C) 2019-2022 The Octave Project Developers
4//
5// See the file COPYRIGHT.md in the top-level directory of this
6// distribution or <https://octave.org/copyright/>.
7//
8// This file is part of Octave.
9//
10// Octave is free software: you can redistribute it and/or modify it
11// under the terms of the GNU General Public License as published by
12// the Free Software Foundation, either version 3 of the License, or
13// (at your option) any later version.
14//
15// Octave is distributed in the hope that it will be useful, but
16// WITHOUT ANY WARRANTY; without even the implied warranty of
17// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18// GNU General Public License for more details.
19//
20// You should have received a copy of the GNU General Public License
21// along with Octave; see the file COPYING. If not, see
22// <https://www.gnu.org/licenses/>.
23//
24////////////////////////////////////////////////////////////////////////
25
26#if defined (HAVE_CONFIG_H)
27# include "config.h"
28#endif
29
30#include <string>
31
32#include "anon-fcn-validator.h"
33#include "ov.h"
34#include "pt-all.h"
35
36namespace octave
37{
39 tree_expression *expr)
40 : m_ok (true), m_line (-1), m_column (-1), m_message ()
41 {
42 expr->accept (*this);
43 }
44
46 {
48
50 error (expr);
51 else
53 }
54
56 {
58
60 error (expr);
61 else
63 }
64
66 {
67 error (expr);
68 }
69
71 {
72 error (expr);
73 }
74
76 {
77 m_ok = false;
78 m_line = expr.line ();
79 m_column = expr.column ();
81 = "invalid use of operator " + expr.oper () + " in anonymous function";
82 }
83}
void visit_prefix_expression(tree_prefix_expression &)
void visit_postfix_expression(tree_postfix_expression &)
anon_fcn_validator(tree_parameter_list *, tree_expression *expr)
void visit_simple_assignment(tree_simple_assignment &)
void visit_multi_assignment(tree_multi_assignment &)
void error(tree_expression &expr)
virtual std::string oper(void) const
Definition: pt-exp.h:103
octave_value::unary_op op_type(void) const
Definition: pt-unop.h:76
virtual void visit_postfix_expression(tree_postfix_expression &)
Definition: pt-walk.cc:491
virtual void visit_prefix_expression(tree_prefix_expression &)
Definition: pt-walk.cc:499
virtual int column(void) const
Definition: pt.h:62
virtual void accept(tree_walker &tw)=0
virtual int line(void) const
Definition: pt.h:60
unary_op
Definition: ov.h:77
@ op_incr
Definition: ov.h:83
@ op_decr
Definition: ov.h:84