use of org.intellij.lang.xpath.XPathFile in project intellij-community by JetBrains.
the class XPathChangeUtil method createXPathFile.
@NotNull
public static XPathFile createXPathFile(PsiElement context, String text) {
final XPathFile file = createXPathFile(context.getProject(), text, context.getContainingFile().getFileType());
ContextProvider.copy(context.getContainingFile(), file);
return file;
}
Aggregations