Lines Matching refs:ext2
773 const ext2 = new _AST(c, ast);
774 i2 = __privateMethod(_a = _AST, _parseAST, parseAST_fn).call(_a, str, ext2, i2, opt);
775 ast.push(ext2);
814 const ext2 = new _AST(c, part);
815 part.push(ext2);
816 i = __privateMethod(_b = _AST, _parseAST, parseAST_fn).call(_b, str, ext2, i, opt);
939 var starDotExtTest = (ext2) => (f) => !f.startsWith(".") && f.endsWith(ext2);
940 var starDotExtTestDot = (ext2) => (f) => f.endsWith(ext2);
941 var starDotExtTestNocase = (ext2) => {
942 ext2 = ext2.toLowerCase();
943 return (f) => !f.startsWith(".") && f.toLowerCase().endsWith(ext2);
945 var starDotExtTestNocaseDot = (ext2) => {
946 ext2 = ext2.toLowerCase();
947 return (f) => f.toLowerCase().endsWith(ext2);
958 var qmarksTestNocase = ([$0, ext2 = ""]) => {
960 if (!ext2)
962 ext2 = ext2.toLowerCase();
963 return (f) => noext(f) && f.toLowerCase().endsWith(ext2);
965 var qmarksTestNocaseDot = ([$0, ext2 = ""]) => {
967 if (!ext2)
969 ext2 = ext2.toLowerCase();
970 return (f) => noext(f) && f.toLowerCase().endsWith(ext2);
972 var qmarksTestDot = ([$0, ext2 = ""]) => {
974 return !ext2 ? noext : (f) => noext(f) && f.endsWith(ext2);
976 var qmarksTest = ([$0, ext2 = ""]) => {
978 return !ext2 ? noext : (f) => noext(f) && f.endsWith(ext2);