コード例 #1
0
 public InvalidType(Element element, Type varType, Type exprType) {
   super(
       element,
       "The type of the left-hand side ("
           + exprType.getFullyQualifiedName()
           + ") is not assignable to a variable of type "
           + varType.getFullyQualifiedName());
 }