Will jquery consider appending selector dialects?

Will jquery consider appending selector dialects?


For example, append a jquery-xquery.js plugin to support syntax like:
(function ($) {
$("//ul/li[class='special']", document.body).each(function () {
....
});
}) (jQuery.xQuery);
jQuery.xQuery should be just like jQuery except the syntax of
selector....
and more dialects could be support as jQuery.css3....