return result;
}
public static ScopeView createScopeViewJoint(IScope underlyingParent, IScope additionalChild) {
ScopesTreeView scopesTree = new ScopesTreeViewJoint(underlyingParent.getSurroundingScopes(), null, additionalChild);
ScopeView result = new ScopeView(underlyingParent, scopesTree);
scopesTree.setScope(result);
return result;
}