예제 #1
0
 private void constructorCall(InvokerRecord ir) {
   newMethodCall = false;
   if (clearOnMethodCall) {
     clear();
   }
   if (recordMethodCalls) {
     String callString =
         ir.getResultTypeString() + " " + ir.getResultName() + " = " + ir.toExpression() + ";";
     text.appendMethodCall(callString + "\n");
   }
   newMethodCall = true;
 }