[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Defensive programming in XSLT using asserts and a

Subject: Re: Defensive programming in XSLT using asserts and as="..."
From: "Michael Kay mike@xxxxxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Fri, 6 May 2022 16:26:15 -0000
Re:  Defensive programming in XSLT using asserts and  a
If you can express the condition with an @as attribute, use that in preference
to an xsl:assert, because it's much more amenable to static analysis -
certainly with Saxon, xsl:assert will only ever give you a run-time error. The
diagnostics for type errors will also tend to be better.

>
> <xsl:param name="item" as="element(author)"/>
>
> is equivalent to:
>
> <xsl:param name="item"/>
> <xsl:assert test="name($item) eq 'author'"/>
>

Almost. name() is sensitive to the choice of namespace prefixes, and should
only be used to generate diagnostic output. If you need an assertion here,
use

<xsl:assert test="$item[self::author]"/>

or

<xsl:assert test="$item instance of element(author)"/>

Michael Kay
Saxonica

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.