diff options
Diffstat (limited to 'src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java')
-rw-r--r-- | src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java b/src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java index 7e38a35b..1e0d9082 100644 --- a/src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java +++ b/src/eclipseAgent/lombok/eclipse/agent/EclipsePatcher.java @@ -63,6 +63,7 @@ public class EclipsePatcher extends Agent { patchCatchReparse(sm); patchSetGeneratedFlag(sm); patchHideGeneratedNodes(sm); + patchLiveDebug(sm); } if (reloadExistingClasses) sm.reloadClasses(instrumentation); @@ -165,6 +166,20 @@ public class EclipsePatcher extends Agent { .transplant().build()); } + /** + * XXX LIVE DEBUG + * + * Adds patches to improve error reporting in cases of extremely rare bugs that are hard to reproduce. These should be removed + * once the issue has been solved! + */ + private static void patchLiveDebug(ScriptManager sm) { + sm.addScript(ScriptBuilder.exitEarly() + .target(new MethodTarget( + "org.eclipse.jdt.internal.compiler.ast.MethodDeclaration", "resolveStatements", "void")) + .decisionMethod(new Hook("lombok.eclipse.agent.PatchFixes", "debugPrintStateOfScope", "boolean", "java.lang.Object")) + .request(StackRequest.THIS).build()); + } + private static void patchAvoidReparsingGeneratedCode(ScriptManager sm) { final String PARSER_SIG = "org.eclipse.jdt.internal.compiler.parser.Parser"; sm.addScript(ScriptBuilder.exitEarly() |