Changeset bf4fe05 for src/Parser/StatementNode.cpp
- Timestamp:
- May 13, 2024, 7:07:06 AM (17 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/StatementNode.cpp
rec20ab9 rbf4fe05 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // StatementNode.c c-- Transform from parse data-structures to AST data-structures, usually deleting the parse7 // StatementNode.cpp -- Transform from parse data-structures to AST data-structures, usually deleting the parse 8 8 // data-structure after the transformation. 9 9 // … … 15 15 // 16 16 17 #include "StatementNode.h "17 #include "StatementNode.hpp" 18 18 19 19 #include <cassert> // for assert, strict_dynamic_cast, assertf … … 23 23 #include "AST/Label.hpp" // for Label 24 24 #include "AST/Stmt.hpp" // for Stmt, AsmStmt, BranchStmt, CaseCla... 25 #include "Common/SemanticError.h "// for SemanticError26 #include "Common/ utility.h"// for maybeMoveBuild, maybeBuild27 #include "DeclarationNode.h "// for DeclarationNode28 #include "ExpressionNode.h "// for ExpressionNode29 #include " parserutility.h"// for notZeroExpr25 #include "Common/SemanticError.hpp"// for SemanticError 26 #include "Common/Utility.hpp" // for maybeMoveBuild, maybeBuild 27 #include "DeclarationNode.hpp" // for DeclarationNode 28 #include "ExpressionNode.hpp" // for ExpressionNode 29 #include "ParserUtility.hpp" // for notZeroExpr 30 30 31 31 class Declaration;
Note:
See TracChangeset
for help on using the changeset viewer.