Skip to content
Snippets Groups Projects
Commit b65e1980 authored by Alexis Nasr's avatar Alexis Nasr
Browse files

traitement d'une exception dans la construction de l'abre abstrait, pratique pour debugger

parent 9aedd869
No related branches found
No related tags found
No related merge requests found
...@@ -104,6 +104,8 @@ public class Compiler ...@@ -104,6 +104,8 @@ public class Compiler
scRoot.apply(sc2sa); scRoot.apply(sc2sa);
saRoot = sc2sa.getRoot(); saRoot = sc2sa.getRoot();
} catch (Exception ignored) { } catch (Exception ignored) {
System.out.println("exception construction arbre abstrait");
ignored.printStackTrace();
} }
PrintStream out = System.out; PrintStream out = System.out;
if (verboseLevel > 1) { if (verboseLevel > 1) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment