Login
7 branches 0 tags
Ben (X13/Arch) Added a Browser REPL for the WASM release 524d7ee 4 years ago 130 Commits
nujel / lib / exception.h
#pragma once
#include "nujel.h"
#include <setjmp.h>

extern jmp_buf exceptionTarget;
extern lVal *exceptionValue;

void lExceptionThrow(const char *symbol, const char *error);
void lExceptionThrowRaw(lVal *v);
void lExceptionInit();