Changes in src/SynTree/Expression.h [c0bf94e:44b4114]
- File:
-
- 1 edited
-
src/SynTree/Expression.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Expression.h
rc0bf94e r44b4114 188 188 public: 189 189 Expression * arg; 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 ); 190 191 CastExpr( Expression * arg ); 192 CastExpr( Expression * arg, Type * toType ); 194 193 CastExpr( const CastExpr & other ); 195 194 virtual ~CastExpr();
Note:
See TracChangeset
for help on using the changeset viewer.