forked from eXist-db/exist
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[test] Function References should be able to have postfix expressions
- Loading branch information
1 parent
4fcb864
commit eed58dc
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
}; |