Esempio n. 1
0
 public static ISerializableEvaluation unmarshal(int firstByte, ITypeMarshalBuffer buffer)
     throws CoreException {
   int op = buffer.getByte();
   ICPPEvaluation arg = (ICPPEvaluation) buffer.unmarshalEvaluation();
   IBinding binding = buffer.unmarshalBinding();
   return new EvalUnary(op, arg, binding);
 }