private void addVariableDeclarationReferencesFromFile(XQueryFile file, String checkedNamespace) {
   for (XQueryVarDecl varDecl : file.getVariableDeclarations()) {
     addVariableAsTargetIfMatches(varDecl, checkedNamespace);
   }
 }