Changes in src/SynTree/Expression.cc [d0d9610:7f5566b]
- File:
-
- 1 edited
-
src/SynTree/Expression.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Expression.cc
rd0d9610 r7f5566b 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Rob Schluntz12 // Last Modified On : Wed Sep 02 12:07:10201513 // Update Count : 3311 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Jul 28 16:27:17 2015 13 // Update Count : 22 14 14 // 15 15 … … 31 31 Expression::Expression( Expression *_aname ) : env( 0 ), argName( _aname ) {} 32 32 33 Expression::Expression( const Expression &other ) : env( maybeClone( other.env ) ) , argName( maybeClone( other.get_argName() ) ){33 Expression::Expression( const Expression &other ) : env( maybeClone( other.env ) ) { 34 34 cloneAll( other.results, results ); 35 argName = other.get_argName(); 35 36 } 36 37 … … 71 72 72 73 void ConstantExpr::print( std::ostream &os, int indent ) const { 73 os << std::string( indent, ' ' ) <<"constant expression " ;74 os << "constant expression " ; 74 75 constant.print( os ); 75 76 Expression::print( os, indent ); 76 os << std::endl;77 77 } 78 78
Note:
See TracChangeset
for help on using the changeset viewer.