blaze lisp
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.

86 lines
1.4 KiB

2 years ago
/*
* Copyright (C) 2023 Riyyi
*
* SPDX-License-Identifier: MIT
*/
#include <cstdint> // int64_t
#include <string>
2 years ago
#include "ast.h"
#include "printer.h"
#include "types.h"
2 years ago
namespace blaze {
Collection::~Collection()
2 years ago
{
for (auto node : m_nodes) {
delete node;
}
}
void Collection::addNode(ASTNode* node)
2 years ago
{
m_nodes.push_back(node);
}
// -----------------------------------------
void HashMap::addElement(const std::string& key, ASTNode* value)
{
m_elements.emplace(key, value);
}
// -----------------------------------------
2 years ago
String::String(const std::string& data)
: m_data(data)
{
}
// -----------------------------------------
Keyword::Keyword(const std::string& data)
: m_data(data)
{
}
// -----------------------------------------
2 years ago
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)
{
}
2 years ago
} // namespace blaze
// -----------------------------------------
void Formatter<blaze::ASTNode*>::format(Builder& builder, blaze::ASTNode* value) const
{
blaze::Printer printer;
return Formatter<std::string>::format(builder, printer.printNoErrorCheck(value));
}