Examples of ErrorFatal


Examples of edu.mit.csail.sdg.alloy4.ErrorFatal

      return ans;
   }

   /** Returns the AlloyType corresponding to the given sig; create an AlloyType for it if none existed before. */
   private AlloyType sigMETA(PrimSig s) throws Err {
      if (s==Sig.NONE) throw new ErrorFatal("Unexpected sig \"none\" encountered.");
      AlloyType type = sig2type.get(s);
      if (type != null) return type;
      if (s==Sig.UNIV) type=AlloyType.UNIV;
      else if (s==Sig.SIGINT) type=AlloyType.INT;
      else if (s==Sig.SEQIDX) type=AlloyType.SEQINT;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.