use of org.intellij.lang.xpath.xslt.util.ParamMatcher in project intellij-community by JetBrains.
the class XsltTemplateImpl method getParameters.
@NotNull
public XsltParameter[] getParameters() {
final PsiElement[] elements = ResolveUtil.collect(new ParamMatcher(getTag(), null));
final XsltParameter[] xsltParameters = new XsltParameter[elements.length];
//noinspection SuspiciousSystemArraycopy
System.arraycopy(elements, 0, xsltParameters, 0, elements.length);
return xsltParameters;
}
Aggregations