use of org.eclipse.ceylon.model.loader.LanguageAnnotation in project ceylon by eclipse.
the class AbstractTransformer method initModelAnnotations.
protected void initModelAnnotations() {
if (gen().omittedModelAnnotations == null) {
HashMap<String, Long> map = new HashMap<String, Long>();
for (LanguageAnnotation mod : LanguageAnnotation.values()) {
map.put(mod.name, mod.mask);
}
gen().omittedModelAnnotations = map;
}
}
Aggregations