Changeset bf4b4cf for src/Parser
- Timestamp:
- Oct 2, 2017, 4:53:32 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- d29fa5f
- Parents:
- 50377a4
- git-author:
- Rob Schluntz <rschlunt@…> (10/02/17 16:53:28)
- git-committer:
- Rob Schluntz <rschlunt@…> (10/02/17 16:53:32)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ExpressionNode.cc
r50377a4 rbf4b4cf 87 87 } else { 88 88 assertf( false, "internal error, bad integral length %s", str.c_str() ); 89 } // if 89 } // if 90 90 posn += 1; 91 91 } // if … … 396 396 397 397 NameExpr * build_varref( const string * name ) { 398 NameExpr * expr = new NameExpr( *name , nullptr);398 NameExpr * expr = new NameExpr( *name ); 399 399 delete name; 400 400 return expr; … … 487 487 list< Expression * > args; 488 488 buildMoveList( expr_node, args ); 489 return new UntypedExpr( maybeMoveBuild< Expression >(function), args , nullptr);489 return new UntypedExpr( maybeMoveBuild< Expression >(function), args ); 490 490 } // build_func 491 491
Note: See TracChangeset
for help on using the changeset viewer.