net.sf.saxon.style.XSLArrayMember Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Saxon-HE Show documentation
Show all versions of Saxon-HE Show documentation
The XSLT and XQuery Processor
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2018-2023 Saxonica Limited
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
// This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
package net.sf.saxon.style;
import net.sf.saxon.Configuration;
import net.sf.saxon.expr.Expression;
import net.sf.saxon.expr.Literal;
import net.sf.saxon.functions.SystemFunction;
import net.sf.saxon.trans.XPathException;
/**
* xsl:array-member element in stylesheet - XSLT 4.0 proposal.
* The xsl:array-member element has the same content model as xsl:sequence. It evaluates the expression
* in its select attribute or its contained sequence constructor, and wraps the resulting sequence
* into an external object. This external object is recognized by the saxon:array instruction, and is
* converted into a single member of the array.
* The instruction also allows xsl:extension-element-prefixes etc.
*/
public class XSLArrayMember extends XSLSequence {
@Override
public Expression compile(Compilation exec, ComponentDeclaration decl) throws XPathException {
if (isInXsltNamespace()) {
requireXslt40(null);
} else if (!getConfiguration().isLicensedFeature(Configuration.LicenseFeature.PROFESSIONAL_EDITION)) {
compileError("xsl:array requires a Saxon-PE or -EE license");
}
if (getSelectExpression() == null) {
setSelectExpression(compileSequenceConstructor(exec, decl, false));
}
Expression result = Literal.makeEmptySequence();
return result;
}
}