GNU Octave  6.2.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
pt-const.cc
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 //
3 // Copyright (C) 1993-2021 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 <ostream>
31 
32 #include "error.h"
33 #include "ovl.h"
34 #include "pager.h"
35 #include "pt-const.h"
36 #include "pt-walk.h"
37 
38 namespace octave
39 {
40  // We are likely to have a lot of tree_constant objects to allocate,
41  // so make the grow_size large.
42 
43  void
44  tree_constant::print (std::ostream& os, bool pr_as_read_syntax,
45  bool pr_orig_text)
46  {
47  if (pr_orig_text && ! m_orig_text.empty ())
48  os << m_orig_text;
49  else
50  m_value.print (os, pr_as_read_syntax);
51  }
52 
53  void
54  tree_constant::print_raw (std::ostream& os, bool pr_as_read_syntax,
55  bool pr_orig_text)
56  {
57  if (pr_orig_text && ! m_orig_text.empty ())
58  os << m_orig_text;
59  else
60  m_value.print_raw (os, pr_as_read_syntax);
61  }
62 
65  {
66  tree_constant *new_tc
67  = new tree_constant (m_value, m_orig_text, line (), column ());
68 
69  new_tc->copy_base (*this);
70 
71  return new_tc;
72  }
73 }
std::string m_orig_text
Definition: pt-const.h:121
octave_value m_value
Definition: pt-const.h:118
void print(std::ostream &os, bool pr_as_read_syntax=false, bool pr_orig_txt=true)
Definition: pt-const.cc:44
tree_expression * dup(symbol_scope &scope) const
Definition: pt-const.cc:64
tree_constant(int l=-1, int c=-1)
Definition: pt-const.h:51
void print_raw(std::ostream &os, bool pr_as_read_syntax=false, bool pr_orig_txt=true)
Definition: pt-const.cc:54
virtual void copy_base(const tree_expression &e)
Definition: pt-exp.h:131
virtual int column(void) const
Definition: pt.h:62
void print_raw(std::ostream &os, bool pr_as_read_syntax=false) const
Definition: ov.h:1233
void print(std::ostream &os, bool pr_as_read_syntax=false)
Definition: ov.h:1230