Skip to content
Snippets Groups Projects
Commit d9277a9b authored by Lukas Stadler's avatar Lukas Stadler
Browse files

fix for NPE in debug handling visitor

parent 14e09b47
No related branches found
No related tags found
No related merge requests found
......@@ -176,7 +176,9 @@ public class DebugHandling {
}
accept(element.getSyntaxLHS());
for (RSyntaxElement arg : element.getSyntaxArguments()) {
accept(arg);
if (arg != null) {
accept(arg);
}
}
return null;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment