Package edu.mit.csail.sdg.alloy4compiler.ast

Examples of edu.mit.csail.sdg.alloy4compiler.ast.Command


   /** Each command now points to a typechecked Expr. */
   private void resolveCommands(Expr globalFacts) throws Err {
      ConstList<Sig> exactSigs = ConstList.make(world.exactSigs);
      for(int i=0; i<commands.size(); i++) {
         Command cmd = commands.get(i);
         cmd = resolveCommand(cmd, exactSigs, globalFacts);
         commands.set(i, cmd);
      }
   }
View Full Code Here

TOP

Related Classes of edu.mit.csail.sdg.alloy4compiler.ast.Command

Copyright © 2018 www.massapicom. 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.