1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 17:47:36 +00:00

LibCpp: Add support for parsing function types

This makes it work with types like `Function<T(U, V)>`.
This commit is contained in:
Ali Mohammad Pur 2021-07-28 06:04:51 +04:30 committed by Andreas Kling
parent b3cbe14569
commit 5f66874ea0
3 changed files with 66 additions and 0 deletions

View file

@ -308,6 +308,26 @@ private:
Kind m_kind;
};
class FunctionType : public Type {
public:
virtual ~FunctionType() override = default;
virtual const char* class_name() const override { return "FunctionType"; }
virtual void dump(FILE* = stdout, size_t indent = 0) const override;
virtual String to_string() const override;
FunctionType(ASTNode* parent, Optional<Position> start, Optional<Position> end, const String& filename)
: Type(parent, start, end, filename)
{
}
void set_return_type(Type& type) { m_return_type = type; }
void set_parameters(NonnullRefPtrVector<Parameter> parameters) { m_parameters = move(parameters); }
private:
RefPtr<Type> m_return_type;
NonnullRefPtrVector<Parameter> m_parameters;
};
class FunctionDefinition : public ASTNode {
public:
virtual ~FunctionDefinition() override = default;