Skip to content

Commit

Permalink
csg based instrumentation seems to work! (related to issue #58)
Browse files Browse the repository at this point in the history
  • Loading branch information
miho committed Aug 10, 2015
1 parent 83c980d commit 70aa165
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ public void instrumentationTest() {

VRLInstrumentationUtil.addEventHandler(InstrumentationEventType.PRE_INVOCATION,
(evt) -> {
System.out.println(" !!pre-evt: " + evt.toString());
System.out.println("pre-evt:\t" + evt.toString());
});
VRLInstrumentationUtil.addEventHandler(InstrumentationEventType.POST_INVOCATION,
(evt) -> {
System.out.println("!!post-evt: " + evt.toString());
System.out.println("post-evt:\t" + evt.toString());
});

System.out.println(instrumentedCode);
Expand Down

0 comments on commit 70aa165

Please sign in to comment.