use of edu.mit.csail.sdg.alloy4.Pos in project org.alloytools.alloy by AlloyTools.
the class ExprChoice method span.
// ============================================================================================================//
/**
* {@inheritDoc}
*/
@Override
public Pos span() {
Pos p = span;
if (p == null) {
p = pos;
for (Expr a : choices) p = p.merge(a.span());
span = p;
}
return p;
}
Aggregations