예제 #1
0
파일: JSSA.java 프로젝트: behnaaz/jerl
 public Return(Expr e) {
   this.e = e;
   if (Type.unify(method.getReturnType(), e.getType()) != method.getReturnType())
     throw new IllegalArgumentException("type mismatch");
 }