[xsl] Context inside brackets

Subject: [xsl] Context inside brackets
From: "Jorge . chocolate.camera@xxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Thu, 21 May 2015 10:45:51 -0000
Having a sequence stored in a variable, how do I reference the item in
that sequence whose position is the same as the position of the
current node with respect to its context, with XSLT 2?

This does return what I expect:

<xsl:variable name="POSITION" select="position()" as="xs:integer"/>
<xsl:sequence select="$FOO[$POSITION]"/>

but I somehow feel that there must be a way to call the `position()`
of the current node from inside those brackets without the meaning of
the function actually becoming the position of the variable itself
instead of the current node's. Is there?

I am using Saxon-HE 9.2.1.2J on OS X 10.10.3 (14D136).

Current Thread