This repository has been archived on 2024-03-07. You can view files and clone it, but cannot push or open issues/pull-requests.
zarn/libstd/macro.cpp

23 lines
590 B
C++

#include "macro.hpp"
std::shared_ptr<Constant> assert_fail(Node const& node,
Compiler& compiler,
Program& program,
SymTable& sym)
{
try
{
compiler.compile(*node.child_at(1), program);
Loc loc = node.loc();
std::cerr << loc.file_path().string() << ":" << loc.line();
std::cerr << " ASSERTION FAILED" << std::endl;
exit(-1);
}
catch (std::exception const&)
{
}
return std::make_shared<Constant>(TYPE_NIL, node.loc(), 0);
}