GNU Octave  3.8.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pt-const.cc
Go to the documentation of this file.
1 /*
2 
3 Copyright (C) 1993-2013 John W. Eaton
4 
5 This file is part of Octave.
6 
7 Octave is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3 of the License, or (at your
10 option) any later version.
11 
12 Octave is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16 
17 You should have received a copy of the GNU General Public License
18 along with Octave; see the file COPYING. If not, see
19 <http://www.gnu.org/licenses/>.
20 
21 */
22 
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26 
27 #include <iostream>
28 
29 #include "error.h"
30 #include "oct-obj.h"
31 #include "pager.h"
32 #include "pt-const.h"
33 #include "pt-walk.h"
34 
35 // We are likely to have a lot of tree_constant objects to allocate,
36 // so make the grow_size large.
38 
39 void
40 tree_constant::print (std::ostream& os, bool pr_as_read_syntax,
41  bool pr_orig_text)
42 {
43  if (pr_orig_text && ! orig_text.empty ())
44  os << orig_text;
45  else
46  val.print (os, pr_as_read_syntax);
47 }
48 
49 void
50 tree_constant::print_raw (std::ostream& os, bool pr_as_read_syntax,
51  bool pr_orig_text)
52 {
53  if (pr_orig_text && ! orig_text.empty ())
54  os << orig_text;
55  else
56  val.print_raw (os, pr_as_read_syntax);
57 }
58 
60 tree_constant::rvalue (int nargout)
61 {
62  octave_value_list retval;
63 
64  if (nargout > 1)
65  error ("invalid number of output arguments for constant expression");
66  else
67  retval = rvalue1 (nargout);
68 
69  return retval;
70 }
71 
75 {
76  tree_constant *new_tc
77  = new tree_constant (val, orig_text, line (), column ());
78 
79  new_tc->copy_base (*this);
80 
81  return new_tc;
82 }
83 
84 void
86 {
87  tw.visit_constant (*this);
88 }