Changes in src/SynTree/Expression.h [44b4114:c0bf94e]
- File:
-
- 1 edited
-
src/SynTree/Expression.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Expression.h
r44b4114 rc0bf94e 188 188 public: 189 189 Expression * arg; 190 191 CastExpr( Expression * arg ); 192 CastExpr( Expression * arg, Type * toType ); 190 bool isGenerated = true; // whether this cast appeared in the source program 191 192 CastExpr( Expression * arg, bool isGenerated = true ); 193 CastExpr( Expression * arg, Type * toType, bool isGenerated = true ); 193 194 CastExpr( const CastExpr & other ); 194 195 virtual ~CastExpr();
Note:
See TracChangeset
for help on using the changeset viewer.