GNU Octave 10.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 
Loading...
Searching...
No Matches
pt-const.cc
Go to the documentation of this file.
1////////////////////////////////////////////////////////////////////////
2//
3// Copyright (C) 1993-2025 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
39
40// We are likely to have a lot of tree_constant objects to allocate,
41// so make the grow_size large.
42
43void
44tree_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
53void
54tree_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 = new tree_constant (m_value, m_orig_text, m_token);
67
68 new_tc->copy_base (*this);
69
70 return new_tc;
71}
72
73OCTAVE_END_NAMESPACE(octave)
void print_raw(std::ostream &os, bool pr_as_read_syntax=false) const
Definition ov.h:1339
void print(std::ostream &os, bool pr_as_read_syntax=false)
Definition ov.h:1336
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
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:137
OCTAVE_BEGIN_NAMESPACE(octave) static octave_value daspk_fcn