use of mb.nabl2.scopegraph.terms.Occurrence in project nabl by metaborg.
the class InterpreterTerms method scopeEntries.
private static ITerm scopeEntries(IScopeGraph<Scope, Label, Occurrence> scopeGraph) {
Map<ITerm, ITerm> entries = Maps.newHashMap();
for (Scope scope : scopeGraph.getAllScopes()) {
IListTerm decls = B.newList(scopeGraph.getDecls().inverse().get(scope));
IListTerm refs = B.newList(scopeGraph.getRefs().inverse().get(scope));
IListTerm edges = multimap(scopeGraph.getDirectEdges().get(scope));
IListTerm imports = multimap(scopeGraph.getImportEdges().get(scope));
ITerm entry = B.newAppl("SE", decls, refs, edges, imports);
entries.put(scope, entry);
}
return map(entries.entrySet());
}
use of mb.nabl2.scopegraph.terms.Occurrence in project nabl by metaborg.
the class InterpreterTerms method refEntries.
private static ITerm refEntries(IScopeGraph<Scope, Label, Occurrence> scopeGraph) {
Map<ITerm, ITerm> entries = Maps.newHashMap();
for (Occurrence ref : scopeGraph.getAllRefs()) {
ITerm scope = scopeGraph.getRefs().get(ref).map(s -> B.newList(s)).orElse(B.newNil());
ITerm entry = B.newAppl("RE", scope);
entries.put(ref, entry);
}
return map(entries.entrySet());
}
use of mb.nabl2.scopegraph.terms.Occurrence in project nabl by metaborg.
the class InterpreterTerms method nameresolution.
private static ITerm nameresolution(IEsopNameResolution<Scope, Label, Occurrence> nameResolution) {
nameResolution.resolveAll();
final Map<ITerm, ITerm> entries = Maps.newHashMap();
for (Map.Entry<Occurrence, Set<IResolutionPath<Scope, Label, Occurrence>>> entry : nameResolution.resolutionEntries()) {
final Occurrence ref = entry.getKey();
final Set<IResolutionPath<Scope, Label, Occurrence>> paths = entry.getValue();
if (paths.size() == 1) {
IResolutionPath<Scope, Label, Occurrence> path = Iterables.getOnlyElement(paths);
ITerm value = B.newTuple(path.getDeclaration(), Paths.toTerm(path));
entries.put(ref, value);
} else {
logger.warn("Can only convert a single path, but {} has {}.", ref, paths.size());
}
}
return map(entries.entrySet());
}
use of mb.nabl2.scopegraph.terms.Occurrence in project nabl by metaborg.
the class InterpreterTerms method declEntries.
private static ITerm declEntries(IScopeGraph<Scope, Label, Occurrence> scopeGraph) {
Map<ITerm, ITerm> entries = Maps.newHashMap();
for (Occurrence decl : scopeGraph.getAllDecls()) {
ITerm scope = scopeGraph.getDecls().get(decl).map(s -> B.newList(s)).orElse(B.newNil());
ITerm assocs = multimap(scopeGraph.getExportEdges().get(decl));
ITerm entry = B.newAppl("DE", scope, assocs);
entries.put(decl, entry);
}
return map(entries.entrySet());
}
use of mb.nabl2.scopegraph.terms.Occurrence in project nabl by metaborg.
the class Solution method findAndLock.
@Override
public ISolution findAndLock() {
final IProperties.Transient<TermIndex, ITerm, ITerm> astProperties = astProperties().melt();
astProperties.mapValues(unifier()::findRecursive);
final IProperties.Transient<Occurrence, ITerm, ITerm> declProperties = declProperties().melt();
declProperties.mapValues(unifier()::findRecursive);
final ISymbolicConstraints symbolic = symbolic().map(unifier()::findRecursive);
return ImmutableSolution.builder().from(this).astProperties(astProperties.freeze()).declProperties(declProperties.freeze()).symbolic(symbolic).build();
}
Aggregations