Quote from: vinicius.jlantunes on April 29, 2025, 20:19:42 PMIs coArchi able to operate with such restrictions in place (verified commits)? Or is it a fundamental incompatibility?
type = e.junctionType;
type = e.concept.junctionType
if (e.specialization==null)
{
if (e.type !="junction")
{
typesList.push(e.type);
}
else
{
log.debug("Its a Junction - type is " + e.junctionType);
log.debug("Its a Junction - name is " + e.name);
var bt=e.junctionType+"-"+e.type;
typesList.push(bt);
}
}
else
typesList.push(e.specialization); //it is a specialization so push the specialization name.