Changeset ebadb5d
- Timestamp:
- Dec 5, 2023, 8:13:50 AM (12 months ago)
- Branches:
- master
- Children:
- 3267041
- Parents:
- 8a4e472 (diff), c7f9f53 (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. - Location:
- src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Decl.cpp
r8a4e472 rebadb5d 21 21 22 22 #include "Common/Eval.h" // for eval 23 #include "Common/SemanticError.h" 23 24 24 25 #include "Fwd.hpp" // for UniqueId -
src/AST/Decl.hpp
r8a4e472 rebadb5d 30 30 #include "Visitor.hpp" 31 31 #include "Common/utility.h" 32 #include "Common/SemanticError.h" // error_str33 32 34 33 // Must be included in *all* AST classes; should be #undef'd at the end of the file -
src/Parser/ParseNode.h
r8a4e472 rebadb5d 33 33 #include "Parser/parserutility.h" // for maybeBuild, maybeCopy 34 34 35 class Attribute;36 class Declaration;37 35 struct DeclarationNode; 38 class DeclarationWithType;39 class Initializer;40 36 class InitializerNode; 41 37 class ExpressionNode; -
src/Parser/TypeData.h
r8a4e472 rebadb5d 133 133 ast::Init * init = nullptr, std::vector<ast::ptr<ast::Attribute>> && attributes = std::vector<ast::ptr<ast::Attribute>>() ); 134 134 ast::FunctionType * buildFunctionType( const TypeData * ); 135 ast::Decl * addEnumBase( Declaration *, const TypeData * );136 135 void buildKRFunction( const TypeData::Function_t & function ); 137 136
Note: See TracChangeset
for help on using the changeset viewer.