Changes in src/AST/Expr.hpp [5408b59:b0d9ff7]
- File:
-
- 1 edited
-
src/AST/Expr.hpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Expr.hpp
r5408b59 rb0d9ff7 257 257 public: 258 258 ptr<Decl> type_decl; 259 ptr<DeclWithType> var; 259 260 std::string name; 260 261 261 QualifiedNameExpr( const CodeLocation & loc, const Decl * d, const std::string & n )262 : Expr( loc ), type_decl( d ), name( n ) {}262 QualifiedNameExpr( const CodeLocation & loc, const Decl * d, const DeclWithType * r, const std::string & n ) 263 : Expr( loc ), type_decl( d ), var(r), name( n ) {} 263 264 264 265 const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
Note:
See TracChangeset
for help on using the changeset viewer.