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

prompto.grammar.INamed Maven / Gradle / Ivy

The newest version!
package prompto.grammar;

import prompto.runtime.Context;
import prompto.type.IType;

/* something that can be referred to by name, and returns a type */
public interface INamed {
	Identifier getId();
	default String getName() {
		return getId().toString();
	}
	IType getType(Context context);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy