source: src/Parser/ParseNode.h@ 201d77a

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 201d77a was 294647b, checked in by Thierry Delisle <tdelisle@…>, 9 years ago

Filename and linenumber handling for parsing errors

  • Property mode set to 100644
File size: 18.3 KB
RevLine 
[b87a5ed]1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
[974906e2]7// ParseNode.h --
[b87a5ed]8//
9// Author : Rodolfo G. Esteves
10// Created On : Sat May 16 13:28:16 2015
[e04ef3a]11// Last Modified By : Peter A. Buhr
[e994912]12// Last Modified On : Thu Feb 9 14:45:28 2017
13// Update Count : 658
[b87a5ed]14//
15
[51b73452]16#ifndef PARSENODE_H
17#define PARSENODE_H
18
19#include <string>
20#include <list>
21#include <iterator>
[e04ef3a]22#include <memory>
[51b73452]23
[68cd1ce]24#include "Parser/LinkageSpec.h"
[59db689]25#include "SynTree/Type.h"
[e04ef3a]26#include "SynTree/Expression.h"
[2f22cc4]27#include "SynTree/Statement.h"
[0f8e4ac]28#include "SynTree/Label.h"
[7880579]29#include "Common/utility.h"
30#include "Common/UniqueName.h"
[51b73452]31
32class StatementNode;
33class CompoundStmtNode;
34class DeclarationNode;
[d1625f8]35class ExpressionNode;
[51b73452]36class InitializerNode;
[44a81853]37class Attribute;
[51b73452]38
[7880579]39//##############################################################################
40
[294647b]41extern char* yyfilename;
42extern int yylineno;
43
[51b73452]44class ParseNode {
[bdd516a]45 public:
[99cad3aa]46 ParseNode() {};
[2298f728]47 virtual ~ParseNode() { delete next; delete name; };
[b6424d9]48 virtual ParseNode * clone() const = 0;
[51b73452]49
[b6424d9]50 ParseNode * get_next() const { return next; }
51 ParseNode * set_next( ParseNode * newlink ) { next = newlink; return this; }
[1b772749]52
[b6424d9]53 ParseNode * get_last() {
54 ParseNode * current;
[2298f728]55 for ( current = this; current->get_next() != nullptr; current = current->get_next() );
[99cad3aa]56 return current;
57 }
[b6424d9]58 ParseNode * set_last( ParseNode * newlast ) {
[2298f728]59 if ( newlast != nullptr ) get_last()->set_next( newlast );
[99cad3aa]60 return this;
61 }
[51b73452]62
[7880579]63 virtual void print( std::ostream &os, int indent = 0 ) const {}
[0da3e2c]64 virtual void printList( std::ostream &os, int indent = 0 ) const {}
[1b772749]65
[b87a5ed]66 static int indent_by;
[7880579]67
[b6424d9]68 ParseNode * next = nullptr;
[2298f728]69 std::string * name = nullptr;
[294647b]70 CodeLocation location = { yyfilename, yylineno };
[7880579]71}; // ParseNode
[51b73452]72
[7bf7fb9]73//##############################################################################
74
[d1625f8]75class InitializerNode : public ParseNode {
76 public:
[2298f728]77 InitializerNode( ExpressionNode *, bool aggrp = false, ExpressionNode * des = nullptr );
78 InitializerNode( InitializerNode *, bool aggrp = false, ExpressionNode * des = nullptr );
[d1625f8]79 ~InitializerNode();
[a7741435]80 virtual InitializerNode * clone() const { assert( false ); return nullptr; }
[d1625f8]81
[b6424d9]82 ExpressionNode * get_expression() const { return expr; }
[d1625f8]83
[b6424d9]84 InitializerNode * set_designators( ExpressionNode * des ) { designator = des; return this; }
85 ExpressionNode * get_designators() const { return designator; }
[d1625f8]86
[b6424d9]87 InitializerNode * set_maybeConstructed( bool value ) { maybeConstructed = value; return this; }
[d1625f8]88 bool get_maybeConstructed() const { return maybeConstructed; }
89
[b6424d9]90 InitializerNode * next_init() const { return kids; }
[d1625f8]91
92 void print( std::ostream &os, int indent = 0 ) const;
93 void printOneLine( std::ostream & ) const;
94
[b6424d9]95 virtual Initializer * build() const;
[d1625f8]96 private:
[b6424d9]97 ExpressionNode * expr;
[d1625f8]98 bool aggregate;
[b6424d9]99 ExpressionNode * designator; // may be list
100 InitializerNode * kids;
[d1625f8]101 bool maybeConstructed;
[c1c1112]102}; // InitializerNode
[d1625f8]103
104//##############################################################################
105
[ac71a86]106class ExpressionNode final : public ParseNode {
[bdd516a]107 public:
[d1625f8]108 ExpressionNode( Expression * expr = nullptr ) : expr( expr ) {}
[b87a5ed]109 ExpressionNode( const ExpressionNode &other );
[d1625f8]110 virtual ~ExpressionNode() {}
[b6424d9]111 virtual ExpressionNode * clone() const { return expr ? new ExpressionNode( expr->clone() ) : nullptr; }
[51b73452]112
[e04ef3a]113 bool get_extension() const { return extension; }
[b6424d9]114 ExpressionNode * set_extension( bool exten ) { extension = exten; return this; }
[51b73452]115
[62e5546]116 virtual void print( std::ostream &os, int indent = 0 ) const override {}
[ac71a86]117 void printOneLine( std::ostream &os, int indent = 0 ) const {}
118
119 template<typename T>
120 bool isExpressionType() const {
121 return nullptr != dynamic_cast<T>(expr.get());
122 }
[51b73452]123
[b6424d9]124 Expression * build() const { return const_cast<ExpressionNode*>(this)->expr.release(); }
[bdd516a]125 private:
[e04ef3a]126 bool extension = false;
[ac71a86]127 std::unique_ptr<Expression> expr;
[c1c1112]128}; // ExpressionNode
[e04ef3a]129
130template< typename T >
[7880579]131struct maybeBuild_t< Expression, T > {
[b6424d9]132 static inline Expression * doit( const T * orig ) {
[e04ef3a]133 if ( orig ) {
[b6424d9]134 Expression * p = orig->build();
[e04ef3a]135 p->set_extension( orig->get_extension() );
136 return p;
137 } else {
[7880579]138 return nullptr;
[e04ef3a]139 } // if
140 }
[51b73452]141};
142
[d9e2280]143enum class OperKinds {
144 // diadic
[7bf7fb9]145 SizeOf, AlignOf, OffsetOf, Plus, Minus, Mul, Div, Mod, Or, And,
[d9e2280]146 BitOr, BitAnd, Xor, Cast, LShift, RShift, LThan, GThan, LEThan, GEThan, Eq, Neq,
[a839867]147 Assign, AtAssn, MulAssn, DivAssn, ModAssn, PlusAssn, MinusAssn, LSAssn, RSAssn, AndAssn, ERAssn, OrAssn,
[d9e2280]148 Index, Range,
149 // monadic
150 UnPlus, UnMinus, AddressOf, PointTo, Neg, BitNeg, Incr, IncrPost, Decr, DecrPost, LabelAddress,
151 Ctor, Dtor,
[c1c1112]152}; // OperKinds
[51b73452]153
[e82aa9df]154struct LabelNode {
155 std::list< Label > labels;
156};
157
[b6424d9]158Expression * build_constantInteger( const std::string &str );
159Expression * build_constantFloat( const std::string &str );
160Expression * build_constantChar( const std::string &str );
[4cb935e]161Expression * build_constantZeroOne( const std::string &str );
[b6424d9]162ConstantExpr * build_constantStr( const std::string &str );
[8780e30]163Expression * build_field_name_FLOATINGconstant( const std::string & str );
164Expression * build_field_name_fraction_constants( Expression * fieldName, ExpressionNode * fracts );
165Expression * build_field_name_REALFRACTIONconstant( const std::string & str );
166Expression * build_field_name_REALDECIMALconstant( const std::string & str );
[b6424d9]167
168NameExpr * build_varref( const std::string * name, bool labelp = false );
169Expression * build_typevalue( DeclarationNode * decl );
170
171Expression * build_cast( DeclarationNode * decl_node, ExpressionNode * expr_node );
[fd782b2]172Expression * build_fieldSel( ExpressionNode * expr_node, Expression * member );
173Expression * build_pfieldSel( ExpressionNode * expr_node, Expression * member );
[b6424d9]174Expression * build_addressOf( ExpressionNode * expr_node );
175Expression * build_sizeOfexpr( ExpressionNode * expr_node );
176Expression * build_sizeOftype( DeclarationNode * decl_node );
177Expression * build_alignOfexpr( ExpressionNode * expr_node );
178Expression * build_alignOftype( DeclarationNode * decl_node );
179Expression * build_offsetOf( DeclarationNode * decl_node, NameExpr * member );
180Expression * build_and( ExpressionNode * expr_node1, ExpressionNode * expr_node2 );
181Expression * build_and_or( ExpressionNode * expr_node1, ExpressionNode * expr_node2, bool kind );
182Expression * build_unary_val( OperKinds op, ExpressionNode * expr_node );
183Expression * build_unary_ptr( OperKinds op, ExpressionNode * expr_node );
184Expression * build_binary_val( OperKinds op, ExpressionNode * expr_node1, ExpressionNode * expr_node2 );
185Expression * build_binary_ptr( OperKinds op, ExpressionNode * expr_node1, ExpressionNode * expr_node2 );
186Expression * build_cond( ExpressionNode * expr_node1, ExpressionNode * expr_node2, ExpressionNode * expr_node3 );
187Expression * build_comma( ExpressionNode * expr_node1, ExpressionNode * expr_node2 );
188Expression * build_attrexpr( NameExpr * var, ExpressionNode * expr_node );
189Expression * build_attrtype( NameExpr * var, DeclarationNode * decl_node );
[2298f728]190Expression * build_tuple( ExpressionNode * expr_node = nullptr );
[b6424d9]191Expression * build_func( ExpressionNode * function, ExpressionNode * expr_node );
192Expression * build_range( ExpressionNode * low, ExpressionNode * high );
193Expression * build_asmexpr( ExpressionNode * inout, ConstantExpr * constraint, ExpressionNode * operand );
194Expression * build_valexpr( StatementNode * s );
195Expression * build_compoundLiteral( DeclarationNode * decl_node, InitializerNode * kids );
[51b73452]196
[7bf7fb9]197//##############################################################################
198
[62e5546]199struct TypeData;
[51b73452]200
[bdd516a]201class DeclarationNode : public ParseNode {
202 public:
[5b639ee]203 // These must remain in the same order as the corresponding DeclarationNode names.
[c0aa336]204
205 // enum StorageClass { Extern, Static, Auto, Register, NoStorageClass };
206 // enum FunctionSpec { Inline, Fortran, Noreturn, NoFunctionSpec };
207 // enum Qualifier { Const, Restrict, Volatile, Lvalue, Atomic, Threadlocal, Mutex, NoQualifier };
208
[68cd1ce]209 enum StorageClass { Extern, Static, Auto, Register, Inline, Fortran, Noreturn, Threadlocal, NoStorageClass, };
[5b639ee]210 enum Qualifier { Const, Restrict, Volatile, Lvalue, Atomic, NoQualifier };
211 enum BasicType { Void, Bool, Char, Int, Float, Double, LongDouble, NoBasicType };
212 enum ComplexType { Complex, Imaginary, NoComplexType };
213 enum Signedness { Signed, Unsigned, NoSignedness };
214 enum Length { Short, Long, LongLong, NoLength };
[faddbd8]215 enum Aggregate { Struct, Union, Trait, NoAggregate };
[8f60f0b]216 enum TypeClass { Otype, Dtype, Ftype, Ttype, NoTypeClass };
[148f7290]217 enum BuiltinType { Valist, Zero, One, NoBuiltinType };
[b87a5ed]218
[b6424d9]219 static const char * storageName[];
[5b639ee]220 static const char * qualifierName[];
[b6424d9]221 static const char * basicTypeName[];
[5b639ee]222 static const char * complexTypeName[];
223 static const char * signednessName[];
224 static const char * lengthName[];
[b6424d9]225 static const char * aggregateName[];
226 static const char * typeClassName[];
227 static const char * builtinTypeName[];
228
229 static DeclarationNode * newFunction( std::string * name, DeclarationNode * ret, DeclarationNode * param, StatementNode * body, bool newStyle = false );
230 static DeclarationNode * newQualifier( Qualifier );
[2298f728]231 static DeclarationNode * newForall( DeclarationNode * );
[b6424d9]232 static DeclarationNode * newStorageClass( StorageClass );
233 static DeclarationNode * newBasicType( BasicType );
[5b639ee]234 static DeclarationNode * newComplexType( ComplexType );
235 static DeclarationNode * newSignedNess( Signedness sn );
236 static DeclarationNode * newLength( Length lnth );
[b6424d9]237 static DeclarationNode * newBuiltinType( BuiltinType );
[2298f728]238 static DeclarationNode * newFromTypedef( std::string * );
[b6424d9]239 static DeclarationNode * newAggregate( Aggregate kind, const std::string * name, ExpressionNode * actuals, DeclarationNode * fields, bool body );
240 static DeclarationNode * newEnum( std::string * name, DeclarationNode * constants );
241 static DeclarationNode * newEnumConstant( std::string * name, ExpressionNode * constant );
[2298f728]242 static DeclarationNode * newName( std::string * );
[b6424d9]243 static DeclarationNode * newFromTypeGen( std::string *, ExpressionNode * params );
[2298f728]244 static DeclarationNode * newTypeParam( TypeClass, std::string * );
245 static DeclarationNode * newTrait( const std::string * name, DeclarationNode * params, DeclarationNode * asserts );
246 static DeclarationNode * newTraitUse( const std::string * name, ExpressionNode * params );
[b6424d9]247 static DeclarationNode * newTypeDecl( std::string * name, DeclarationNode * typeParams );
248 static DeclarationNode * newPointer( DeclarationNode * qualifiers );
249 static DeclarationNode * newArray( ExpressionNode * size, DeclarationNode * qualifiers, bool isStatic );
250 static DeclarationNode * newVarArray( DeclarationNode * qualifiers );
251 static DeclarationNode * newBitfield( ExpressionNode * size );
252 static DeclarationNode * newTuple( DeclarationNode * members );
253 static DeclarationNode * newTypeof( ExpressionNode * expr );
[44a81853]254 static DeclarationNode * newAttr( std::string *, ExpressionNode * expr ); // @ attributes
255 static DeclarationNode * newAttr( std::string *, DeclarationNode * type ); // @ attributes
256 static DeclarationNode * newAttribute( std::string *, ExpressionNode * expr = nullptr ); // gcc attributes
[e994912]257 static DeclarationNode * newAsmStmt( StatementNode * stmt ); // gcc external asm statement
[b87a5ed]258
[7880579]259 DeclarationNode();
260 ~DeclarationNode();
[b6424d9]261 DeclarationNode * clone() const;
[7880579]262
[2298f728]263 DeclarationNode * addQualifiers( DeclarationNode * );
[413ad05]264 void checkQualifiers( const TypeData *, const TypeData * );
[2298f728]265 void checkStorageClasses( DeclarationNode * );
266 DeclarationNode * copyStorageClasses( DeclarationNode * );
267 DeclarationNode * addType( DeclarationNode * );
[b6424d9]268 DeclarationNode * addTypedef();
[2298f728]269 DeclarationNode * addAssertions( DeclarationNode * );
270 DeclarationNode * addName( std::string * );
[c0aa336]271 DeclarationNode * addAsmName( DeclarationNode * );
[b6424d9]272 DeclarationNode * addBitfield( ExpressionNode * size );
273 DeclarationNode * addVarArgs();
274 DeclarationNode * addFunctionBody( StatementNode * body );
275 DeclarationNode * addOldDeclList( DeclarationNode * list );
[c0aa336]276 DeclarationNode * setBase( TypeData * newType );
277 DeclarationNode * copyAttribute( DeclarationNode * attr );
[b6424d9]278 DeclarationNode * addPointer( DeclarationNode * qualifiers );
279 DeclarationNode * addArray( DeclarationNode * array );
280 DeclarationNode * addNewPointer( DeclarationNode * pointer );
281 DeclarationNode * addNewArray( DeclarationNode * array );
282 DeclarationNode * addParamList( DeclarationNode * list );
283 DeclarationNode * addIdList( DeclarationNode * list ); // old-style functions
284 DeclarationNode * addInitializer( InitializerNode * init );
285
286 DeclarationNode * cloneType( std::string * newName );
287 DeclarationNode * cloneBaseType( DeclarationNode * newdecl );
288
289 DeclarationNode * appendList( DeclarationNode * node ) {
[99cad3aa]290 return (DeclarationNode *)set_last( node );
291 }
[b87a5ed]292
[62e5546]293 virtual void print( std::ostream &os, int indent = 0 ) const override;
294 virtual void printList( std::ostream &os, int indent = 0 ) const override;
[b87a5ed]295
[b6424d9]296 Declaration * build() const;
297 ::Type * buildType() const;
[b87a5ed]298
299 bool get_hasEllipsis() const;
[8b7ee09]300 LinkageSpec::Spec get_linkage() const { return linkage; }
[b6424d9]301 DeclarationNode * extractAggregate() const;
[4f147cc]302 bool has_enumeratorValue() const { return (bool)enumeratorValue; }
[b6424d9]303 ExpressionNode * consume_enumeratorValue() const { return const_cast<DeclarationNode*>(this)->enumeratorValue.release(); }
[b87a5ed]304
[7305915]305 bool get_extension() const { return extension; }
[b6424d9]306 DeclarationNode * set_extension( bool exten ) { extension = exten; return this; }
[c1c1112]307 public:
[28307be]308 struct Variable_t {
[faddbd8]309// const std::string * name;
[28307be]310 DeclarationNode::TypeClass tyClass;
311 DeclarationNode * assertions;
312 };
313 Variable_t variable;
314
315 struct Attr_t {
[faddbd8]316// const std::string * name;
[28307be]317 ExpressionNode * expr;
318 DeclarationNode * type;
319 };
320 Attr_t attr;
321
[8f6f47d7]322 BuiltinType builtin;
323
[b6424d9]324 TypeData * type;
[13e3b50]325 StorageClass storageClass;
[b6424d9]326 ExpressionNode * bitfieldWidth;
[58dd019]327 bool isInline, isNoreturn;
[4f147cc]328 std::unique_ptr<ExpressionNode> enumeratorValue;
[b87a5ed]329 bool hasEllipsis;
[8b7ee09]330 LinkageSpec::Spec linkage;
[58dd019]331 ConstantExpr *asmName;
[44a81853]332 std::list< Attribute * > attributes;
[58dd019]333 InitializerNode * initializer;
[7305915]334 bool extension = false;
[13e3b50]335 std::string error;
[e994912]336 StatementNode * asmStmt;
[b87a5ed]337
338 static UniqueName anonymous;
[1db21619]339}; // DeclarationNode
[51b73452]340
[b6424d9]341Type * buildType( TypeData * type );
[d1625f8]342
[b6424d9]343static inline Type * maybeMoveBuildType( const DeclarationNode * orig ) {
[4f147cc]344 Type* ret = orig ? orig->buildType() : nullptr;
345 delete orig;
346 return ret;
347}
348
[7bf7fb9]349//##############################################################################
350
[ac71a86]351class StatementNode final : public ParseNode {
[bdd516a]352 public:
[e82aa9df]353 StatementNode() { stmt = nullptr; }
[b6424d9]354 StatementNode( Statement * stmt ) : stmt( stmt ) {}
355 StatementNode( DeclarationNode * decl );
[e82aa9df]356 virtual ~StatementNode() {}
[51b73452]357
[b6424d9]358 virtual StatementNode * clone() const final { assert( false ); return nullptr; }
359 Statement * build() const { return const_cast<StatementNode*>(this)->stmt.release(); }
[2f22cc4]360
[44a81853]361 virtual StatementNode * add_label( const std::string * name, DeclarationNode * attr = nullptr ) {
362 stmt->get_labels().emplace_back( * name, nullptr, attr ? std::move( attr->attributes ) : std::list< Attribute * > {} );
363 delete attr;
[ac71a86]364 delete name;
[2f22cc4]365 return this;
366 }
367
[b6424d9]368 virtual StatementNode * append_last_case( StatementNode * );
[1d4580a]369
[62e5546]370 virtual void print( std::ostream &os, int indent = 0 ) const override {}
371 virtual void printList( std::ostream &os, int indent = 0 ) const override {}
[2f22cc4]372 private:
[ac71a86]373 std::unique_ptr<Statement> stmt;
[2f22cc4]374}; // StatementNode
375
[b6424d9]376Statement * build_expr( ExpressionNode * ctl );
[1d4580a]377
[2f22cc4]378struct ForCtl {
[b6424d9]379 ForCtl( ExpressionNode * expr, ExpressionNode * condition, ExpressionNode * change ) :
[e82aa9df]380 init( new StatementNode( build_expr( expr ) ) ), condition( condition ), change( change ) {}
[b6424d9]381 ForCtl( DeclarationNode * decl, ExpressionNode * condition, ExpressionNode * change ) :
[e82aa9df]382 init( new StatementNode( decl ) ), condition( condition ), change( change ) {}
[2f22cc4]383
[b6424d9]384 StatementNode * init;
385 ExpressionNode * condition;
386 ExpressionNode * change;
[2f22cc4]387};
388
[b6424d9]389Statement * build_if( ExpressionNode * ctl, StatementNode * then_stmt, StatementNode * else_stmt );
390Statement * build_switch( ExpressionNode * ctl, StatementNode * stmt );
391Statement * build_case( ExpressionNode * ctl );
392Statement * build_default();
393Statement * build_while( ExpressionNode * ctl, StatementNode * stmt, bool kind = false );
394Statement * build_for( ForCtl * forctl, StatementNode * stmt );
395Statement * build_branch( BranchStmt::Type kind );
396Statement * build_branch( std::string * identifier, BranchStmt::Type kind );
397Statement * build_computedgoto( ExpressionNode * ctl );
398Statement * build_return( ExpressionNode * ctl );
399Statement * build_throw( ExpressionNode * ctl );
400Statement * build_try( StatementNode * try_stmt, StatementNode * catch_stmt, StatementNode * finally_stmt );
401Statement * build_catch( DeclarationNode * decl, StatementNode * stmt, bool catchAny = false );
402Statement * build_finally( StatementNode * stmt );
403Statement * build_compound( StatementNode * first );
[2298f728]404Statement * build_asmstmt( bool voltile, ConstantExpr * instruction, ExpressionNode * output = nullptr, ExpressionNode * input = nullptr, ExpressionNode * clobber = nullptr, LabelNode * gotolabels = nullptr );
[7f5566b]405
[7bf7fb9]406//##############################################################################
407
[aefcc3b]408template< typename SynTreeType, typename NodeType, template< typename, typename...> class Container, typename... Args >
409void buildList( const NodeType * firstNode, Container< SynTreeType *, Args... > &outputList ) {
[b87a5ed]410 SemanticError errors;
[aefcc3b]411 std::back_insert_iterator< Container< SynTreeType *, Args... > > out( outputList );
[b6424d9]412 const NodeType * cur = firstNode;
[b87a5ed]413
414 while ( cur ) {
415 try {
[b6424d9]416 SynTreeType * result = dynamic_cast< SynTreeType * >( maybeBuild< typename std::pointer_traits< decltype(cur->build())>::element_type >( cur ) );
[b87a5ed]417 if ( result ) {
[294647b]418 result->location = cur->location;
[b6424d9]419 * out++ = result;
[b87a5ed]420 } // if
421 } catch( SemanticError &e ) {
[294647b]422 e.set_location( cur->location );
[b87a5ed]423 errors.append( e );
424 } // try
[7880579]425 cur = dynamic_cast< NodeType * >( cur->get_next() );
[b87a5ed]426 } // while
[a32b204]427 if ( ! errors.isEmpty() ) {
[b87a5ed]428 throw errors;
429 } // if
[51b73452]430}
431
432// in DeclarationNode.cc
[b6424d9]433void buildList( const DeclarationNode * firstNode, std::list< Declaration * > &outputList );
434void buildList( const DeclarationNode * firstNode, std::list< DeclarationWithType * > &outputList );
435void buildTypeList( const DeclarationNode * firstNode, std::list< Type * > &outputList );
[51b73452]436
[7ecbb7e]437template< typename SynTreeType, typename NodeType >
[b6424d9]438void buildMoveList( const NodeType * firstNode, std::list< SynTreeType * > &outputList ) {
[7ecbb7e]439 buildList(firstNode, outputList);
440 delete firstNode;
441}
442
[c8dfcd3]443// in ParseNode.cc
444std::ostream & operator<<( std::ostream & out, const ParseNode * node );
[7ecbb7e]445
[bdd516a]446#endif // PARSENODE_H
[51b73452]447
448// Local Variables: //
[b87a5ed]449// tab-width: 4 //
450// mode: c++ //
451// compile-command: "make install" //
[51b73452]452// End: //
Note: See TracBrowser for help on using the repository browser.