/**
  * Determines if the variable represented by varInfo is a ".getClass()" variable.
  *
  * @param varInfo the VarInfo of the variable being tested.
  * @return true iff varInfo is a ".getClass()" variable.
  */
 private static boolean isTypeOfVar(VarInfo varInfo) {
   return varInfo.has_typeof();
 }