2014-11-20 23:42:03 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
Stub stylesheet for apply-gen testing
|
|
|
|
|
|
|
|
Copyright (C) 2014 LoVullo Associates, Inc.
|
|
|
|
|
|
|
|
This file is part of hoxsl.
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<stylesheet version="2.0"
|
|
|
|
xmlns="http://www.w3.org/1999/XSL/Transform"
|
|
|
|
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
2016-03-26 14:17:30 -04:00
|
|
|
xmlns:foo="http://mikegerwitz.com/_junk">
|
2014-11-20 23:42:03 -05:00
|
|
|
|
|
|
|
|
|
|
|
<function name="foo:add-two" as="xs:decimal">
|
|
|
|
<param name="x" as="xs:decimal" />
|
|
|
|
<param name="y" as="xs:decimal" />
|
|
|
|
|
|
|
|
<sequence select="$x + $y" />
|
|
|
|
</function>
|
|
|
|
|
2014-11-21 14:25:52 -05:00
|
|
|
|
|
|
|
<!-- make sure multiple functions are properly handled -->
|
|
|
|
<function name="foo:sub-two" as="xs:decimal">
|
|
|
|
<param name="x" as="xs:decimal" />
|
|
|
|
<param name="y" as="xs:decimal" />
|
|
|
|
|
|
|
|
<sequence select="$x - $y" />
|
|
|
|
</function>
|
2014-12-02 16:04:34 -05:00
|
|
|
|
2014-12-04 01:13:24 -05:00
|
|
|
|
|
|
|
<!-- overloaded function, for which we cannot generate anything -->
|
|
|
|
<function name="foo:overloaded">
|
|
|
|
<param name="a" />
|
|
|
|
</function>
|
|
|
|
<function name="foo:overloaded">
|
|
|
|
<param name="a" />
|
|
|
|
<param name="b" />
|
|
|
|
</function>
|
|
|
|
|
|
|
|
|
2014-12-02 16:04:34 -05:00
|
|
|
<!-- large number of arguments to test partial application -->
|
|
|
|
<function name="foo:eight" as="item()+">
|
|
|
|
<param name="arg1" />
|
|
|
|
<param name="arg2" />
|
|
|
|
<param name="arg3" />
|
|
|
|
<param name="arg4" />
|
|
|
|
<param name="arg5" />
|
|
|
|
<param name="arg6" />
|
|
|
|
<param name="arg7" />
|
|
|
|
<param name="arg8" />
|
|
|
|
|
|
|
|
<sequence select="$arg1, $arg2, $arg3, $arg4,
|
|
|
|
$arg5, $arg6, $arg7, $arg8" />
|
|
|
|
</function>
|
2014-11-21 14:25:52 -05:00
|
|
|
</stylesheet>
|