Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Known issues and future enhancements for Saxon Debugger #208

Open
9 tasks
ligasgr opened this issue Jan 21, 2017 · 0 comments
Open
9 tasks

Known issues and future enhancements for Saxon Debugger #208

ligasgr opened this issue Jan 21, 2017 · 0 comments

Comments

@ligasgr
Copy link
Owner

ligasgr commented Jan 21, 2017

  • Some expressions do not get TraceExpression wrapping:
    • DocumentSorter (line 3 will never get stop at breakpoint)
    declare function local:abc() {
      let $var := <a><b><c/><d attr='e' another='value'>f</d></b><g><h>i</h></g></a>
      let $var1 := $var/b/d
      return $var1
    };
    local:abc()
    • Global variable reference (line 2 will never get stop at breakpoint)
    declare variable $var := 'a';
    $var
  • Code, when run in saxon debug mode, is around 100 times slower
  • Evaluation only works in expression mode (binding new variables doesn't work in SaxonExpressionEvaluator.WrappingStaticContext.bindVariable)
  • Reference checking in expression evaluation window does not work (context not available)
  • When stopping (after successful execution) the process exits with 137 exit code instead of 0
  • Drop frame functionality
  • Set value of variable
  • Other breakpoint types (function call/exit, exception)
  • Return list and map as element containing children instead of string representation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant