Changeset bf4fe05 for src/Parser/ParseNode.hpp
- Timestamp:
- May 13, 2024, 7:07:06 AM (6 months ago)
- Branches:
- master
- Children:
- ca4f2b2
- Parents:
- ec20ab9 (diff), 5f225f5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ParseNode.hpp
rec20ab9 rbf4fe05 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // ParseNode.h --7 // ParseNode.hpp -- 8 8 // 9 9 // Author : Rodolfo G. Esteves … … 16 16 #pragma once 17 17 18 #include <algorithm> // for move19 #include <cassert> // for assert, assertf20 #include <iosfwd> // for ostream21 #include <iterator> // for back_insert_iterator22 #include <list> // for list23 #include <memory> // for unique_ptr, pointer_traits24 #include <string> // for string18 #include <algorithm> // for move 19 #include <cassert> // for assert, assertf 20 #include <iosfwd> // for ostream 21 #include <iterator> // for back_insert_iterator 22 #include <list> // for list 23 #include <memory> // for unique_ptr, pointer_traits 24 #include <string> // for string 25 25 26 #include "AST/Expr.hpp" // for Expr, NameExprLogicalFlag27 #include "AST/Fwd.hpp" // for ptr, Decl, DeclWithType,28 #include "AST/Stmt.hpp" // for Stmt29 #include "Common/CodeLocation.h " // for CodeLocation30 #include "Common/SemanticError.h " // for SemanticError31 #include "Common/UniqueName.h " // for UniqueName32 #include "Parser/ parserutility.h" // for maybeBuild, maybeCopy26 #include "AST/Expr.hpp" // for Expr, NameExpr, LogicalFlag 27 #include "AST/Fwd.hpp" // for ptr, Decl, DeclWithType, 28 #include "AST/Stmt.hpp" // for Stmt 29 #include "Common/CodeLocation.hpp" // for CodeLocation 30 #include "Common/SemanticError.hpp" // for SemanticError 31 #include "Common/UniqueName.hpp" // for UniqueName 32 #include "Parser/ParserUtility.hpp" // for maybeBuild, maybeCopy 33 33 34 34 struct DeclarationNode;
Note: See TracChangeset
for help on using the changeset viewer.