Changes in src/AST/Convert.cpp [a2a85658:e6faef4]
- File:
-
- 1 edited
-
src/AST/Convert.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Convert.cpp
ra2a85658 re6faef4 993 993 const ast::Expr * visit( const ast::UniqueExpr * node ) override final { 994 994 auto rslt = new UniqueExpr( 995 get<Expression>().accept1(node->expr), 996 node->id 995 get<Expression>().accept1(node->expr) 997 996 ); 998 997 … … 2368 2367 auto rslt = new ast::UniqueExpr( 2369 2368 old->location, 2370 GET_ACCEPT_1(expr, Expr), 2371 old->get_id() 2369 GET_ACCEPT_1(expr, Expr) 2372 2370 ); 2373 2371 rslt->object = GET_ACCEPT_1(object, ObjectDecl);
Note:
See TracChangeset
for help on using the changeset viewer.