123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- #include <string>
- #include <vector>
- #include <memory>
- namespace qlow
- {
- namespace ast
- {
- template<typename T>
- using List = std::vector<std::unique_ptr<T>>;
- struct Class;
- struct FeatureDeclaration;
- struct FieldDeclaration;
- struct MethodDefinition;
- struct VariableDeclaration;
- struct Statement;
- struct Expression;
- struct Identifier;
- struct BinaryOperation;
- struct FunctionCall;
- }
- }
- struct qlow::ast::Class
- {
- std::string name;
- };
- struct qlow::ast::FeatureDeclaration
- {
- std::string name;
- std::string type;
- };
- struct qlow::ast::FieldDeclaration
- {
- inline MethodDefinition(const std::string& type, const std::string& name) :
- FeatureDeclaration(type, name)
- {
- }
- };
- struct qlow::ast::MethodDefinition
- {
- List<ArgumentDeclaration> arguments;
- std::unique_ptr<DoEndBlock> body;
- inline MethodDefinition(const std::string& type, const std::string& name,
- std::unique_ptr<DoEndBlock>&& body) :
- FeatureDeclaration(type, name),
- body(body)
- {
- }
- };
- struct qlow::ast::VariableDeclaration
- {
- std::string name;
- std::string type;
- };
- struct qlow::ast::Statement
- {
- };
- struct qlow::ast::Expression
- {
- };
- struct qlow::ast::BinaryOperation : public Expression
- {
- std::unique_ptr<Expression> left;
- std::string operator_str;
- std::unique_ptr<Expression> right;
- };
- struct qlow::ast::FunctionCall : public Expression
- {
- std::string name;
- std::vector<std::unique_ptr<Expression>> arguments;
- };
|