Skip to content

Commit

Permalink
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -170,7 +170,9 @@ public Object visitFrame(FrameInstance frameInstance) {
.getFrame(FrameInstance.FrameAccess.READ_ONLY, true));

Node callNode = getCallNode(frameInstance, method);
activations.add(new Activation(callNode, method));
if (callNode != null) {
activations.add(new Activation(callNode, method));
}
}
}

2 comments on commit 3646a09

@chrisseaton
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'Only add Activation is a call node could be found.' - I don't understand what this means

@eregon
Copy link
Member Author

@eregon eregon commented on 3646a09 May 26, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if*, sorry.

Please sign in to comment.