From b321fb5d3d6b3c2855c2fcc049c6f3b8fb13a7a8 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 15 Feb 2019 22:24:54 +0100 Subject: WIP: Port to LLVM7 --- src/repl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/repl.cpp') diff --git a/src/repl.cpp b/src/repl.cpp index d3ad22e..e6de528 100644 --- a/src/repl.cpp +++ b/src/repl.cpp @@ -42,7 +42,7 @@ readExpand(PEnv& penv, Cursor& cursor, istream& is, const AST*& exp) { try { exp = penv.parse(cursor, is); - } catch (Error e) { + } catch (RespError e) { cerr << e.what() << endl; is.ignore(std::numeric_limits::max(), '\n'); // Skip REPL junk throw e; @@ -224,7 +224,7 @@ eval(CEnv& cenv, Cursor& cursor, istream& is, bool execute) callPrintCollect(cenv, cenv.engine()->getFn(cenv, "main"), ast, retT, execute); - } catch (Error& e) { + } catch (RespError& e) { cenv.err << e.what() << endl; return 1; } @@ -288,7 +288,7 @@ repl(CEnv& cenv) ast, retT, true); } - } catch (Error& e) { + } catch (RespError& e) { cenv.err << e.what() << endl; } } -- cgit v1.2.1