ligasgr / intellij-xquery

Plugin to support XQuery in Intellij Idea
Apache License 2.0
35 stars 23 forks source link

Functions with the same name in different namespaces reported as already defined #169

Closed rhdunn closed 8 years ago

rhdunn commented 8 years ago

Given:

declare namespace t="http://marklogic.com/roxy/test";
declare function t:list() {
    ()
};
declare function local:list() {
    t:list()
};
()

the plugin reports both instances of list as already being defined. This example is from the marklogic roxy project -- test/default.xqy.