You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
721 B
50 lines
721 B
2 years ago
|
/*
|
||
|
* Copyright (C) 2023 Riyyi
|
||
|
*
|
||
|
* SPDX-License-Identifier: MIT
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <cstddef> // size_t
|
||
|
#include <vector>
|
||
|
|
||
|
#include "ast.h"
|
||
|
#include "lexer.h"
|
||
|
|
||
|
namespace blaze {
|
||
|
|
||
|
// Parsing -> creates AST
|
||
|
class Reader {
|
||
|
public:
|
||
|
Reader(std::vector<Token>&& tokens) noexcept;
|
||
|
virtual ~Reader();
|
||
|
|
||
|
void read();
|
||
|
|
||
|
void dump();
|
||
|
|
||
|
ASTNode* node() { return m_node; }
|
||
|
|
||
|
private:
|
||
|
bool isEOF() const;
|
||
|
Token peek() const;
|
||
|
Token consume();
|
||
|
void ignore();
|
||
|
|
||
|
ASTNode* readImpl();
|
||
|
ASTNode* readList();
|
||
|
ASTNode* readString();
|
||
|
ASTNode* readValue();
|
||
|
|
||
|
void dumpImpl(ASTNode* node);
|
||
|
|
||
|
size_t m_index { 0 };
|
||
|
size_t m_indentation { 0 };
|
||
|
std::vector<Token> m_tokens;
|
||
|
|
||
|
ASTNode* m_node { nullptr };
|
||
|
};
|
||
|
|
||
|
} // namespace blaze
|