elna/source/ir.cpp

47 lines
786 B
C++

#include "elna/ir.hpp"
#include <cassert>
namespace elna
{
void TransformVisitor::visit(Node *node)
{
assert(false);
}
void TransformVisitor::visit(Definition *definition)
{
assert(false);
}
void TransformVisitor::visit(BangStatement *statement)
{
assert(false);
}
void TransformVisitor::visit(Block *block)
{
assert(false);
}
void TransformVisitor::visit(Expression *expression)
{
assert(false);
}
void TransformVisitor::visit(Number *number)
{
assert(false);
}
void TransformVisitor::visit(Variable *variable)
{
assert(false);
}
void TransformVisitor::visit(BinaryExpression *binaryExpression)
{
assert(false);
}
}