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 01c4679 commit 82da2c3
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -790,6 +790,10 @@ public void visitMethodCallExpression(MethodCallExpression s) {
IArgument[] arguments = convertArguments(args);

String objectName = null;

if (s.getText().startsWith("this.")) {
objectName = "this";
}

boolean isIdCall = false;
boolean isStatic = false;
Expand Down

0 comments on commit 82da2c3

Please sign in to comment.