All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.snapscript.compile.validate.ModuleValidator Maven / Gradle / Ivy

There is a newer version: 1.4.6
Show newest version
package org.snapscript.compile.validate;

import java.util.List;

import org.snapscript.core.InternalStateException;
import org.snapscript.core.Module;
import org.snapscript.core.Type;

public class ModuleValidator {

   private final TypeValidator validator;
   
   public ModuleValidator(TypeValidator validator) {
      this.validator = validator;
   }
   
   public void validate(Module module) throws Exception {
      List types = module.getTypes();
      String name = module.getName();
      
      for(Type type : types) {
         try {
            validator.validate(type);
         }catch(Exception e) {
            throw new InternalStateException("Invalid reference to '" + type +"' in '" + name + "'", e);
         }
      }
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy