/* * Copyright (C) 2023 Riyyi * * SPDX-License-Identifier: MIT */ #include // int64_t #include #include #include "ast.h" #include "printer.h" #include "types.h" namespace blaze { void Collection::addNode(ASTNodePtr node) { m_nodes.push_back(node); } // ----------------------------------------- void HashMap::addElement(const std::string& key, ASTNodePtr value) { m_elements.emplace(key, value); } // ----------------------------------------- String::String(const std::string& data) : m_data(data) { } // ----------------------------------------- Keyword::Keyword(const std::string& data) : m_data(data) { } // ----------------------------------------- Number::Number(int64_t number) : m_number(number) { } // ----------------------------------------- Symbol::Symbol(const std::string& symbol) : m_symbol(symbol) { } // ----------------------------------------- Value::Value(const std::string& value) : m_value(value) { } // ----------------------------------------- Function::Function(Lambda lambda) : m_lambda(lambda) { } } // namespace blaze // ----------------------------------------- void Formatter::format(Builder& builder, blaze::ASTNodePtr value) const { // printf("ASDJASJKDASJKDNAJK\n"); blaze::Printer printer; return Formatter::format(builder, printer.printNoErrorCheck(value)); }