* Fixes instances of calling toString() on an array. If the array is the result of calling
* e.getStackTrace(), replaces e.getStackTrace().toString() with Guava's
* Throwables.getStackTraceAsString(e).
* Otherwise, replaces a.toString() with Arrays.toString(a).
*/
Fix fix;
ExpressionTree receiverTree = ASTHelpers.getReceiver(methodTree);
if (receiverTree instanceof MethodInvocationTree &&
getStackTraceMatcher.matches((MethodInvocationTree) receiverTree, state)) {
String throwable = ASTHelpers.getReceiver(receiverTree).toString();