public static IScope createDummyScope(ASTCssNode owner, String name) {
return new BasicScope(new LocalScope(owner, Arrays.asList(name), DUMMY), new ScopesTree());
}
private static IScope createScope(ASTCssNode owner, IScope parent, String type) {
BasicScope result = new BasicScope(new LocalScope(owner, new ArrayList<String>(), type), new ScopesTree());
result.setParentKeepConsistency(parent);
return result;
}