BaseXdb / basex

BaseX Main Repository.
http://basex.org
BSD 3-Clause "New" or "Revised" License
661 stars 267 forks source link

XQuery: Refine parameter types to arguments types of function call #2259

Closed ChristianGruen closed 7 months ago

ChristianGruen commented 7 months ago
declare %basex:inline(0) function local:type($value) {
  if($value instance of xs:integer) then 'int' else 'string'
};
local:type('x')

…can be optimized to…

declare %basex:inline(0) function local:type($value) { 'string' };
local:type("x")