serene/src/libserene/exprs/expression.cpp

47 lines
1.3 KiB
C++
Raw Normal View History

2021-04-06 00:21:43 +01:00
/* -*- C++ -*-
2021-10-12 20:51:03 +01:00
* Serene Programming Language
2021-04-06 00:21:43 +01:00
*
2021-10-12 20:51:03 +01:00
* Copyright (c) 2019-2021 Sameer Rahmani <lxsameer@gnu.org>
2021-04-06 00:21:43 +01:00
*
2021-10-12 20:51:03 +01:00
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 2.
2021-04-06 00:21:43 +01:00
*
2021-10-12 20:51:03 +01:00
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
2021-04-06 00:21:43 +01:00
*
2021-10-12 20:51:03 +01:00
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2021-04-06 00:21:43 +01:00
*/
#include "serene/exprs/expression.h"
#include <llvm/Support/FormatVariadic.h>
2021-04-06 00:21:43 +01:00
namespace serene {
namespace exprs {
2021-04-25 23:07:08 +01:00
std::string astToString(const Ast *tree) {
if (tree->size() == 0) {
return "";
}
std::string result = tree->at(0)->toString();
for (unsigned int i = 1; i < tree->size(); i++) {
result = llvm::formatv("{0} {1}", result, tree->at(i)->toString());
}
return result;
}
std::string stringifyExprType(ExprType t) { return exprTypes[(int)t]; };
/// Dump the given AST tree to the standard out
2021-04-25 23:07:08 +01:00
void dump(Ast &tree) { llvm::outs() << astToString(&tree) << "\n"; };
2021-04-06 00:21:43 +01:00
} // namespace exprs
} // namespace serene