Skip to content

Commit

Permalink
[test] Function References should be able to have postfix expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
adamretter committed Oct 10, 2024
1 parent 4fcb864 commit 5939a14
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
2 changes: 2 additions & 0 deletions exist-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -810,6 +810,7 @@
<exclude>src/test/java/org/exist/xquery/value/SubSequenceRangeTest.java</exclude>
<exclude>src/test/java/org/exist/xquery/value/SubSequenceTest.java</exclude>
<exclude>src/test/xquery/binary-value.xqm</exclude>
<exclude>src/test/xquery/function-reference.xqm</exclude>
<exclude>src/test/xquery/order.xqm</exclude>
<exclude>src/test/xquery/type-promotion.xqm</exclude>
<exclude>src/test/xquery/xqsuite/xqsuite-assertions-dynamic.xqm</exclude>
Expand Down Expand Up @@ -973,6 +974,7 @@ The original license statement is also included below.]]></preamble>
<include>src/test/java/org/exist/xquery/value/SubSequenceRangeTest.java</include>
<include>src/test/java/org/exist/xquery/value/SubSequenceTest.java</include>
<include>src/test/xquery/binary-value.xqm</include>
<include>src/test/xquery/function-reference.xqm</include>
<include>src/test/xquery/order.xqm</include>
<include>src/test/xquery/type-promotion.xqm</include>
<include>src/test/xquery/xqsuite/xqsuite-assertions-dynamic.xqm</include>
Expand Down
54 changes: 54 additions & 0 deletions exist-core/src/test/xquery/xquery3/function-reference.xqm
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
(:
: Copyright (C) 2014, Evolved Binary Ltd
:
: This file was originally ported from FusionDB to eXist-db by
: Evolved Binary, for the benefit of the eXist-db Open Source community.
: Only the ported code as it appears in this file, at the time that
: it was contributed to eXist-db, was re-licensed under The GNU
: Lesser General Public License v2.1 only for use in eXist-db.
:
: This license grant applies only to a snapshot of the code as it
: appeared when ported, it does not offer or infer any rights to either
: updates of this source code or access to the original source code.
:
: The GNU Lesser General Public License v2.1 only license follows.
:
: ---------------------------------------------------------------------
:
: Copyright (C) 2014, Evolved Binary Ltd
:
: This library is free software; you can redistribute it and/or
: modify it under the terms of the GNU Lesser General Public
: License as published by the Free Software Foundation; version 2.1.
:
: This library is distributed in the hope that it will be useful,
: but WITHOUT ANY WARRANTY; without even the implied warranty of
: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
: Lesser General Public License for more details.
:
: You should have received a copy of the GNU Lesser General Public
: License along with this library; if not, write to the Free Software
: Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
:)
xquery version "3.1";

module namespace fr = "http://exist-db.org/xquery/test/function-reference";

declare namespace test = "http://exist-db.org/xquery/xqsuite";

declare
%test:assertExists
function fr:function-reference() {
fr:test-identity#1
};

declare
%test:args("adam")
%test:assertEquals("adam")
function fr:function-reference-eval($arg) {
fr:test-identity#1($arg)
};

declare function fr:test-identity($x) {
$x
};

0 comments on commit 5939a14

Please sign in to comment.