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.
33 lines
592 B
33 lines
592 B
/* |
|
* Copyright (C) 2023 Riyyi |
|
* |
|
* SPDX-License-Identifier: MIT |
|
*/ |
|
|
|
#pragma once |
|
|
|
#include "ast.h" |
|
#include <string> |
|
|
|
namespace blaze { |
|
|
|
// Serializer -> return to string |
|
class Printer { |
|
public: |
|
Printer(); |
|
virtual ~Printer(); |
|
|
|
std::string print(ValuePtr node, bool print_readably = true); |
|
std::string printNoErrorCheck(ValuePtr node, bool print_readably = true); |
|
|
|
private: |
|
void init(); |
|
void printImpl(ValuePtr node, bool print_readably = true); |
|
void printError(); |
|
|
|
bool m_first_node { true }; |
|
bool m_previous_node_is_list { false }; |
|
std::string m_print; |
|
}; |
|
|
|
} // namespace blaze
|
|
|