|
next
|
Subject: How to use Saxon for X16 on WIndows 7 Author: Arthur Gardner Date: 02 Oct 2017 12:55 PM
|
Thanks, Ivan.
I did indeed read your previous comments, but we are talking about something else here.
I just wrote this trivial code:
declare function local:Add($a as xs:integer, $b as xs:integer) as xs:integer
{
$a + $b
};
let $x := xs:integer(1)
let $y := xs:integer(2)
return <result>{local:Add($x,$y)}</result>
It runs with DDXQ.
I set processor to Saxon 9.7.0.15, placed my cursor at the addition line and pressed F9, resulting in a red circle next to the closing brace, and clicked Preview result.
I got the Processing green bar, and it just kept moving until I killed the process struzzo.exe two minutes later. The buttons (pause, stop) had no effect.
The same thing happens if I set no break point, but just click Preview.
Arthur
|
|
|