use of com.oracle.svm.configure.config.ConfigurationType in project graal by oracle.
the class TypeMethodsWithFlagsTest method getConfigTypeOrFail.
private static ConfigurationType getConfigTypeOrFail(TypeConfiguration typeConfig, String typeName) {
ConfigurationType type = typeConfig.get(ConfigurationCondition.alwaysTrue(), typeName);
Assert.assertNotNull(type);
return type;
}
Aggregations