subscript 10.3.4 → 10.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/feature/asi.js CHANGED
@@ -1,9 +1,27 @@
1
1
  // ASI: newline at `;` precedence level triggers nary `;`
2
- import { parse, prec } from '../parse.js';
2
+ import { parse, prec, cur, idx, seek } from '../parse.js';
3
3
 
4
4
  // Set prec.asi before importing to customize (default: prec[';'])
5
5
  const lvl = prec.asi ?? prec[';'];
6
6
 
7
+ const SPACE = 32, LF = 10, SEMI = 59, space = parse.space;
8
+
9
+ const lineBreak = (i = idx, c) => {
10
+ while ((c = cur.charCodeAt(i)) <= SPACE) {
11
+ if (c === LF) return true;
12
+ i++;
13
+ }
14
+ };
15
+
16
+ parse.space = () => {
17
+ let cc;
18
+ while ((cc = space()) === SEMI && lineBreak(idx + 1)) {
19
+ seek(idx + 1);
20
+ parse.newline = true;
21
+ }
22
+ return cc;
23
+ };
24
+
7
25
  let asiDepth = 0;
8
26
  const MAX_ASI_DEPTH = 100;
9
27
 
@@ -0,0 +1,23 @@
1
+ // Unicode identifier extensions for JS/Jessie source.
2
+ // Raw escape spelling is preserved in AST identifiers.
3
+ import { parse, cur, idx } from '../parse.js';
4
+
5
+ const BSLASH = 92, U = 117, LBRACE = 123, RBRACE = 125, MIDDOT = 183;
6
+
7
+ const id = parse.id,
8
+ hex = c =>
9
+ (c >= 48 && c <= 57) ||
10
+ (c >= 65 && c <= 70) ||
11
+ (c >= 97 && c <= 102),
12
+
13
+ uesc = (n = idx + 2, c, cp = 0, i = 0) => {
14
+ if (cur.charCodeAt(idx) !== BSLASH || cur.charCodeAt(idx + 1) !== U) return 0;
15
+ if (cur.charCodeAt(n) === LBRACE) {
16
+ while (hex(c = cur.charCodeAt(++n))) cp = cp * 16 + (c <= 57 ? c - 48 : (c & 31) + 9);
17
+ return n > idx + 3 && cp <= 0x10ffff && cur.charCodeAt(n) === RBRACE ? n - idx + 1 : 0;
18
+ }
19
+ while (i < 4 && hex(cur.charCodeAt(n + i))) i++;
20
+ return i === 4 ? 6 : 0;
21
+ };
22
+
23
+ parse.id = c => id(c) || c === MIDDOT || uesc();
package/jessie.js CHANGED
@@ -6,6 +6,9 @@
6
6
  */
7
7
  import './justin.js';
8
8
 
9
+ // JS source compatibility
10
+ import './feature/unicode.js';
11
+
9
12
  // Statement features
10
13
  import './feature/var.js';
11
14
  import './feature/function.js';
package/jessie.min.js CHANGED
@@ -1,8 +1,8 @@
1
- var _r=r=>r>=48&&r<=57||r>=65&&r<=70||r>=97&&r<=102,me=(r=u+2,e,t=0,n=0)=>{if(m.charCodeAt(u)!==92||m.charCodeAt(u+1)!==117)return 0;if(m.charCodeAt(r)===123){for(;_r(e=m.charCodeAt(++r));)t=t*16+(e<=57?e-48:(e&31)+9);return r>u+3&&t<=1114111&&m.charCodeAt(r)===125?r-u+1:0}for(;n<4&&_r(m.charCodeAt(r+n));)n++;return n===4?6:0},fr,u,m,c=r=>(u=0,m=r,c.newline=!1,r=a(),m[u]?R():r||""),R=(r="Unexpected token",e=u,t=m.slice(0,e).split(`
2
- `),n=t.pop(),o=m.slice(Math.max(0,e-40),e),f="\u032D",p=(m[e]||" ")+f,l=m.slice(e+1,e+20))=>{throw SyntaxError(`${r} at ${t.length+1}:${n.length+1}
1
+ var fr,p,m,c=r=>(p=0,m=r,c.newline=!1,r=a(),m[p]?R():r||""),R=(r="Unexpected token",e=p,t=m.slice(0,e).split(`
2
+ `),n=t.pop(),o=m.slice(Math.max(0,e-40),e),f="\u032D",u=(m[e]||" ")+f,l=m.slice(e+1,e+20))=>{throw SyntaxError(`${r} at ${t.length+1}:${n.length+1}
3
3
  ${m[e-41]!==`
4
- `,""+o}${p}${l}`)},Or=(r,e=u)=>(Array.isArray(r)&&(r.loc=e),r),N=(r,e=u,t)=>{for(;t=r(m.charCodeAt(u))||r===c.id&&me();)u+=t;return m.slice(e,u)},h=(r=1)=>m[u+=r],v=r=>u=r,a=(r=0,e)=>{let t,n,o,f,p;for(e&&c.asi&&(c.newline=!1);(t=c.space())&&(p=c.newline,1)&&t!==e&&(o=(n&&t===91&&fr&&c.asi?.(n,r,a)||null)??((f=T[t])&&f(n,r))??(n&&p&&c.asi?.(n,r,a))??(!n&&N(c.id)));)n=o;return e&&(t==e?(u++,e===125&&c.asi&&(c.newline=!0)):R("Unclosed "+String.fromCharCode(e-(e>42?2:1)))),n},d=(r,e=u)=>{for(fr=!1;(r=m.charCodeAt(u))<=32;)c.asi&&r===10&&(c.newline=fr=!0),u++;return r},Pr=(r=u)=>{for(;m.charCodeAt(r)<=32;)r++;return m.charCodeAt(r)},Tt=c.id=r=>r>=48&&r<=57||r>=65&&r<=90||r>=97&&r<=122||r==36||r==95||r>=192&&r!=215&&r!=247,I=(r,e=r.length)=>m.substr(u,e)===r&&!c.id(m.charCodeAt(u+e)),P=()=>(h(),a(0,41)),T=[],j={},k=(r,e=32,t,n=r.charCodeAt(0),o=r.length,f=T[n],p=r.toUpperCase()!==r,l,A)=>(e=j[r]=!f&&j[r]||e,T[n]=(g,S,E,C=u)=>(l=E,(E?r==E:(o<2||r.charCodeAt(1)===m.charCodeAt(u+1)&&(o<3||m.substr(u,o)==r))&&(!p||!c.id(m.charCodeAt(u+o)))&&(l=E=r))&&S<e&&(u+=o,(A=t(g))?Or(A,C):(u=C,l=0,!p&&!f&&!g&&R()),A)||f?.(g,S,l))),y=(r,e,t=!1)=>k(r,e,n=>n&&(o=>o&&[r,n,o])(a(e-(t?.5:0)))),O=(r,e,t)=>k(r,e,n=>t?n&&[r,n]:!n&&(n=a(e-.5))&&[r,n]),$=(r,e)=>k(r,200,t=>!t&&[,e]),pr=(r,e,t)=>k(r,e,(n,o)=>(o=a(e-(t?.5:0)),n?.[0]!==r&&(n=[r,n||null]),o?.[0]===r?n.push(...o.slice(1)):n.push(o||null),n)),W=(r,e)=>k(r[0],e,t=>!t&&[r,a(0,r.charCodeAt(1))||null]),ur=(r,e)=>k(r[0],e,t=>t&&[r,t,a(0,r.charCodeAt(1))||null]),w=(r,e,t,n=r.charCodeAt(0),o=r.length,f=T[n],p)=>T[n]=(l,A,g,S=u)=>!l&&(g?r==g:(o<2||m.substr(u,o)==r)&&(g=r))&&A<e&&!c.id(m.charCodeAt(u+o))&&(!c.prop||c.prop(u+o))&&(v(u+o),(p=t())?Or(p,S):v(S),p)||f?.(l,A,g);Object.defineProperty(c,"space",{configurable:!0,enumerable:!0,get:()=>d,set:r=>d=r});var lr={},s=(r,e,t=lr[r])=>lr[r]=(...n)=>e(...n)||t?.(...n),i=r=>Array.isArray(r)?r[0]==null?(e=>()=>e)(r[1]):lr[r[0]]?.(...r.slice(1))??R(`Unknown operator: ${r[0]}`,r?.loc):r===void 0?()=>{}:e=>e?.[r];var q=46,z=48,x=57,de=69,ae=101,he=43,Ae=45,Z=95,vr=110,ye=97,ge=102,we=65,Ce=70,Br=r=>r.indexOf("_")<0?r:r.replaceAll("_",""),cr=r=>{let e=Br(N(t=>t===q&&m.charCodeAt(u+1)!==q||t>=z&&t<=x||t===Z||((t===de||t===ae)&&((t=m.charCodeAt(u+1))>=z&&t<=x||t===he||t===Ae)?2:0)));return m.charCodeAt(u)===vr?(h(),[,BigInt(e)]):(r=+e)!=r?R():[,r]},Ee={2:r=>r===48||r===49||r===Z,8:r=>r>=48&&r<=55||r===Z,16:r=>r>=z&&r<=x||r>=ye&&r<=ge||r>=we&&r<=Ce||r===Z};c.number=null;T[q]=r=>!r&&m.charCodeAt(u+1)!==q&&cr();for(let r=z;r<=x;r++)T[r]=e=>e?void 0:cr();T[z]=r=>{if(r)return;let e=c.number;if(e){for(let[t,n]of Object.entries(e))if(t[0]==="0"&&m[u+1]?.toLowerCase()===t[1]){h(2);let o=Br(N(Ee[n]));return m.charCodeAt(u)===vr?(h(),[,BigInt("0"+t[1]+o)]):[,parseInt(o,n)]}}return cr()};var Se=92,Lr=34,Mr=39,ke={n:`
5
- `,r:"\r",t:" ",b:"\b",f:"\f",v:"\v"},Ur=r=>(e,t,n="")=>{if(!(e||!c.string?.[String.fromCharCode(r)]))return h(),N(o=>o-r&&(o===Se?(n+=ke[m[u+1]]||m[u+1],2):(n+=m[u],1))),m[u]===String.fromCharCode(r)?h():R("Bad string"),[,n]};T[Lr]=Ur(Lr);T[Mr]=Ur(Mr);c.string={'"':!0};var Ie=20;"= += -= *= /= %= |= &= ^= >>= <<=".split(" ").map(r=>y(r,Ie,!0));var Gr=(r,e,t,n)=>typeof r=="string"?o=>e(o,r,o):r[0]==="."?(t=i(r[1]),n=r[2],o=>e(t(o),n,o)):r[0]==="[]"&&r.length===3?(t=i(r[1]),n=i(r[2]),o=>e(t(o),n(o),o)):r[0]==="()"&&r.length===2?Gr(r[1],e):(()=>{throw Error("Invalid assignment target")})(),Fr={"=":(r,e,t)=>r[e]=t,"+=":(r,e,t)=>r[e]+=t,"-=":(r,e,t)=>r[e]-=t,"*=":(r,e,t)=>r[e]*=t,"/=":(r,e,t)=>r[e]/=t,"%=":(r,e,t)=>r[e]%=t,"|=":(r,e,t)=>r[e]|=t,"&=":(r,e,t)=>r[e]&=t,"^=":(r,e,t)=>r[e]^=t,">>=":(r,e,t)=>r[e]>>=t,"<<=":(r,e,t)=>r[e]<<=t};for(let r in Fr)s(r,(e,t)=>(t=i(t),Gr(e,(n,o,f)=>Fr[r](n,o,t(f)))));var Te=30,Ne=40,Re=140;O("!",Re);y("||",Te);y("&&",Ne);s("!",r=>(r=i(r),e=>!r(e)));s("||",(r,e)=>(r=i(r),e=i(e),t=>r(t)||e(t)));s("&&",(r,e)=>(r=i(r),e=i(e),t=>r(t)&&e(t)));var _e=50,Oe=60,Pe=70,Xr=100,ve=140;y("|",_e);y("&",Pe);y("^",Oe);y(">>",Xr);y("<<",Xr);O("~",ve);s("~",r=>(r=i(r),e=>~r(e)));s("|",(r,e)=>(r=i(r),e=i(e),t=>r(t)|e(t)));s("&",(r,e)=>(r=i(r),e=i(e),t=>r(t)&e(t)));s("^",(r,e)=>(r=i(r),e=i(e),t=>r(t)^e(t)));s(">>",(r,e)=>(r=i(r),e=i(e),t=>r(t)>>e(t)));s("<<",(r,e)=>(r=i(r),e=i(e),t=>r(t)<<e(t)));var b=90;y("<",b);y(">",b);y("<=",b);y(">=",b);s(">",(r,e)=>(r=i(r),e=i(e),t=>r(t)>e(t)));s("<",(r,e)=>(r=i(r),e=i(e),t=>r(t)<e(t)));s(">=",(r,e)=>(r=i(r),e=i(e),t=>r(t)>=e(t)));s("<=",(r,e)=>(r=i(r),e=i(e),t=>r(t)<=e(t)));var Dr=80;y("==",Dr);y("!=",Dr);s("==",(r,e)=>(r=i(r),e=i(e),t=>r(t)==e(t)));s("!=",(r,e)=>(r=i(r),e=i(e),t=>r(t)!=e(t)));var Hr=110,mr=120,Kr=140;y("+",Hr);y("-",Hr);y("*",mr);y("/",mr);y("%",mr);O("+",Kr);O("-",Kr);s("+",(r,e)=>e!==void 0?(r=i(r),e=i(e),t=>r(t)+e(t)):(r=i(r),t=>+r(t)));s("-",(r,e)=>e!==void 0?(r=i(r),e=i(e),t=>r(t)-e(t)):(r=i(r),t=>-r(t)));s("*",(r,e)=>(r=i(r),e=i(e),t=>r(t)*e(t)));s("/",(r,e)=>(r=i(r),e=i(e),t=>r(t)/e(t)));s("%",(r,e)=>(r=i(r),e=i(e),t=>r(t)%e(t)));var rr=150;k("++",rr,r=>r?["++",r,null]:["++",a(rr-1)]);k("--",rr,r=>r?["--",r,null]:["--",a(rr-1)]);var dr=(r,e,t,n)=>typeof r=="string"?o=>e(o,r):r[0]==="."?(t=i(r[1]),n=r[2],o=>e(t(o),n)):r[0]==="[]"&&r.length===3?(t=i(r[1]),n=i(r[2]),o=>e(t(o),n(o))):r[0]==="()"&&r.length===2?dr(r[1],e):(()=>{throw Error("Invalid increment target")})();s("++",(r,e)=>dr(r,e===null?(t,n)=>t[n]++:(t,n)=>++t[n]));s("--",(r,e)=>dr(r,e===null?(t,n)=>t[n]--:(t,n)=>--t[n]));var Be=5,Le=10;pr(",",Le);pr(";",Be,!0);var Qr=(...r)=>(r=r.map(i),e=>{let t;for(let n of r)t=n(e);return t});s(",",Qr);s(";",Qr);var Me=170;W("()",Me);var F=r=>r?.[0]==="_"&&r[1]==="_"||r==="constructor"||r==="prototype",ar=170;ur("[]",ar);y(".",ar);ur("()",ar);var er=r=>{throw Error(r)};s("[]",(r,e)=>e===void 0?(r=r?r[0]===","?r.slice(1):[r]:[],r=r.map(t=>t==null?(()=>{}):t[0]==="..."?(t=i(t[1]),n=>t(n)):(t=i(t),n=>[t(n)])),t=>r.flatMap(n=>n(t))):(e==null&&er("Missing index"),r=i(r),e=i(e),t=>{let n=e(t);return F(n)?void 0:r(t)[n]}));s(".",(r,e)=>(r=i(r),e=e[0]?e:e[1],F(e)?()=>{}:t=>r(t)[e]));s("()",(r,e)=>{if(e===void 0)return r==null?er("Empty ()"):i(r);let t=o=>o?.[0]===","&&o.slice(1).some(f=>f==null||t(f));t(e)&&er("Empty argument");let n=e?e[0]===","?(e=e.slice(1).map(i),o=>e.map(f=>f(o))):(e=i(e),o=>[e(o)]):()=>[];return hr(r,(o,f,p)=>o[f](...n(p)))});var L=r=>typeof r=="string"||Array.isArray(r)&&(r[0]==="."||r[0]==="?."||r[0]==="[]"&&r.length===3||r[0]==="?.[]"||r[0]==="()"&&r.length===2&&L(r[1])||r[0]==="{}"),hr=(r,e,t,n)=>r==null?er("Empty ()"):r[0]==="()"&&r.length==2?hr(r[1],e):typeof r=="string"?o=>e(o,r,o):r[0]==="."?(t=i(r[1]),n=r[2],o=>e(t(o),n,o)):r[0]==="?."?(t=i(r[1]),n=r[2],o=>{let f=t(o);return f==null?void 0:e(f,n,o)}):r[0]==="[]"&&r.length===3?(t=i(r[1]),n=i(r[2]),o=>e(t(o),n(o),o)):r[0]==="?.[]"?(t=i(r[1]),n=i(r[2]),o=>{let f=t(o);return f==null?void 0:e(f,n(o),o)}):(r=i(r),o=>e([r(o)],0,o)),G=hr;var $r=new WeakMap,Ue=(r,...e)=>typeof r=="string"?i(c(r)):$r.get(r)||$r.set(r,Fe(r,e)).get(r),jr=57344,Fe=(r,e)=>{let t=r.reduce((f,p,l)=>f+(l?String.fromCharCode(jr+l-1):"")+p,""),n=c(t),o=f=>{if(typeof f=="string"&&f.length===1){let p=f.charCodeAt(0)-jr,l;if(p>=0&&p<e.length)return l=e[p],Ge(l)?l:[,l]}return Array.isArray(f)?f.map(o):f};return i(o(n))},Ge=r=>typeof r=="string"||Array.isArray(r)&&(typeof r[0]=="string"||r[0]===void 0),Wr=Ue;var Xe=32,De=c.space;c.comment??={"//":`
6
- `,"/*":"*/"};var Ar;c.space=()=>{Ar||(Ar=Object.entries(c.comment).map(([o,f])=>[o,f,o.charCodeAt(0)]));for(var r;r=De();){for(var e=0,t;t=Ar[e++];)if(r===t[2]&&m.substr(u,t[0].length)===t[0]){var n=u+t[0].length;if(t[1]===`
7
- `)for(;m.charCodeAt(n)>=Xe;)n++;else{for(;m[n]&&m.substr(n,t[1].length)!==t[1];)n++;m[n]&&(n+=t[1].length)}v(n),r=0;break}if(r)return r}return r};var zr=80;y("===",zr);y("!==",zr);s("===",(r,e)=>(r=i(r),e=i(e),t=>r(t)===e(t)));s("!==",(r,e)=>(r=i(r),e=i(e),t=>r(t)!==e(t)));var He=30;y("??",He);s("??",(r,e)=>(r=i(r),e=i(e),t=>r(t)??e(t)));var Ke=130,Qe=20;y("**",Ke,!0);y("**=",Qe,!0);s("**",(r,e)=>(r=i(r),e=i(e),t=>r(t)**e(t)));var $e=r=>{throw Error(r)};s("**=",(r,e)=>(L(r)||$e("Invalid assignment target"),e=i(e),G(r,(t,n,o)=>t[n]**=e(o))));var Jr=90;y("in",Jr);y("of",Jr);s("in",(r,e)=>(r=i(r),e=i(e),t=>r(t)in e(t)));var je=20,We=100,ze=r=>{throw Error(r)};y(">>>",We);y(">>>=",je,!0);s(">>>",(r,e)=>(r=i(r),e=i(e),t=>r(t)>>>e(t)));s(">>>=",(r,e)=>(L(r)||ze("Invalid assignment target"),e=i(e),G(r,(t,n,o)=>t[n]>>>=e(o))));var yr=5,Je=10,Ve=20,Ye=r=>r[0]?.[0]===","?r[0].slice(1):r,D=(r,e,t)=>{if(typeof r=="string"){t[r]=e;return}let[n,...o]=r,f=Ye(o);if(n==="{}"){let p=[];for(let l of f){if(Array.isArray(l)&&l[0]==="..."){let C={};for(let _ in e)p.includes(_)||(C[_]=e[_]);t[l[1]]=C;break}let A,g,S;typeof l=="string"?A=g=l:l[0]==="="?(typeof l[1]=="string"?A=g=l[1]:[,A,g]=l[1],S=l[2]):[,A,g]=l,p.push(A);let E=e[A];E===void 0&&S&&(E=i(S)(t)),D(g,E,t)}}else if(n==="[]"){let p=0;for(let l of f){if(l===null){p++;continue}if(Array.isArray(l)&&l[0]==="..."){t[l[1]]=e.slice(p);break}let A=l,g;Array.isArray(l)&&l[0]==="="&&([,A,g]=l);let S=e[p++];S===void 0&&g&&(S=i(g)(t)),D(A,S,t)}}},Vr=r=>{if(r==="let"){let t=u;if(d(),I("in")){v(t);return}v(t)}let e=a(Je-1);return e?.[0]==="in"||e?.[0]==="of"?[e[0],[r,e[1]],e[2]]:e?.[0]===","?[r,...e.slice(1)]:[r,e]};w("let",yr+1,()=>Vr("let"));w("const",yr+1,()=>Vr("const"));w("var",yr,()=>(d(),["var",a(Ve)]));var Yr=(...r)=>(r=r.map(e=>{if(typeof e=="string")return t=>{t[e]=void 0};if(e[0]==="="){let[,t,n]=e,o=i(n);return typeof t=="string"?f=>{f[t]=o(f)}:f=>D(t,o(f),f)}return i(e)}),e=>{for(let t of r)t(e)});s("let",Yr);s("const",Yr);s("var",r=>typeof r=="string"?e=>{e[r]=void 0}:()=>{});var gr=20,tr=r=>{throw Error(r)};y("||=",gr,!0);y("&&=",gr,!0);y("??=",gr,!0);s("=",(r,e)=>{if(Array.isArray(r)&&(r[0]==="let"||r[0]==="const"||r[0]==="var")){let t=r[1];return e=i(e),typeof t=="string"?n=>{n[t]=e(n)}:n=>D(t,e(n),n)}return L(r)||tr("Invalid assignment target"),e=i(e),G(r,(t,n,o)=>t[n]=e(o))});s("||=",(r,e)=>(L(r)||tr("Invalid assignment target"),e=i(e),G(r,(t,n,o)=>t[n]||=e(o))));s("&&=",(r,e)=>(L(r)||tr("Invalid assignment target"),e=i(e),G(r,(t,n,o)=>t[n]&&=e(o))));s("??=",(r,e)=>(L(r)||tr("Invalid assignment target"),e=i(e),G(r,(t,n,o)=>t[n]??=e(o))));$("true",!0);$("false",!1);$("null",null);w("undefined",200,()=>[]);$("NaN",NaN);$("Infinity",1/0);var wr=20;k("?",wr,(r,e,t)=>r&&(e=a(wr-1))&&N(n=>n===58)&&(t=a(wr-1),["?",r,e,t]));s("?",(r,e,t)=>(r=i(r),e=i(e),t=i(t),n=>r(n)?e(n):t(n)));var B=[],Ze=20;y("=>",Ze,!0);s("=>",(r,e)=>{r=r?.[0]==="()"?r[1]:r;let t=r?r[0]===","?r.slice(1):[r]:[],n=-1,o=null,f=t[t.length-1];Array.isArray(f)&&f[0]==="..."&&(n=t.length-1,o=f[1],t.length--);let p=e?.[0]==="{}";return e=i(p?["{",e[1]]:e),l=>(...A)=>{let g={};t.forEach((E,C)=>g[E]=A[C]),o&&(g[o]=A.slice(n));let S=new Proxy(g,{get:(E,C)=>C in E?E[C]:l?.[C],set:(E,C,_)=>((C in E?E:l)[C]=_,!0),has:(E,C)=>C in E||(l?C in l:!1)});try{let E=e(S);return p?void 0:E}catch(E){if(E===B)return E[0];throw E}}});var qe=140;O("...",qe);s("...",r=>(r=i(r),e=>Object.entries(r(e))));var Zr=170;k("?.",Zr,(r,e)=>{if(!r)return;let t=d();return t===40?(h(),["?.()",r,a(0,41)||null]):t===91?(h(),["?.[]",r,a(0,93)]):(e=a(Zr),e?["?.",r,e]:void 0)});s("?.",(r,e)=>(r=i(r),F(e)?()=>{}:t=>r(t)?.[e]));s("?.[]",(r,e)=>(r=i(r),e=i(e),t=>{let n=e(t);return F(n)?void 0:r(t)?.[n]}));s("?.()",(r,e)=>{let t=e?e[0]===","?(e=e.slice(1).map(i),o=>e.map(f=>f(o))):(e=i(e),o=>[e(o)]):()=>[];if(r[0]==="?."){let o=i(r[1]),f=r[2];return F(f)?()=>{}:p=>o(p)?.[f]?.(...t(p))}if(r[0]==="?.[]"){let o=i(r[1]),f=i(r[2]);return p=>{let l=o(p),A=f(p);return F(A)?void 0:l?.[A]?.(...t(p))}}if(r[0]==="."){let o=i(r[1]),f=r[2];return F(f)?()=>{}:p=>o(p)?.[f]?.(...t(p))}if(r[0]==="[]"&&r.length===3){let o=i(r[1]),f=i(r[2]);return p=>{let l=o(p),A=f(p);return F(A)?void 0:l?.[A]?.(...t(p))}}let n=i(r);return o=>n(o)?.(...t(o))});var J=140;O("typeof",J);O("void",J);O("delete",J);w("new",J,()=>I(".target")?(h(7),["new.target"]):["new",a(J)]);s("typeof",r=>(r=i(r),e=>typeof r(e)));s("void",r=>(r=i(r),e=>(r(e),void 0)));s("delete",r=>{if(r[0]==="."){let e=i(r[1]),t=r[2];return n=>delete e(n)[t]}if(r[0]==="[]"){let e=i(r[1]),t=i(r[2]);return n=>delete e(n)[t(n)]}return()=>!0});s("new",r=>{let e=i(r?.[0]==="()"?r[1]:r),t=r?.[0]==="()"?r[2]:null,n=t?t[0]===","?(o=>f=>o.map(p=>p(f)))(t.slice(1).map(i)):(o=>f=>[o(f)])(i(t)):()=>[];return o=>new(e(o))(...n(o))});var nr=Symbol("accessor"),Cr=20,xe=40,qr=41,xr=123,br=125,re=r=>e=>{if(e)return;d();let t=N(c.id);if(!t||(d(),m.charCodeAt(u)!==xe))return!1;h();let n=a(0,qr);return d(),m.charCodeAt(u)!==xr?!1:(h(),[r,t,n,a(0,br)])};k("get",Cr-1,re("get"));k("set",Cr-1,re("set"));k("(",Cr-1,r=>{if(!r||typeof r!="string")return;let e=a(0,qr)||null;if(d(),m.charCodeAt(u)===xr)return h(),[":",r,["=>",["()",e],a(0,br)||null]]});s("get",(r,e)=>(e=e?i(e):()=>{},t=>[[nr,r,{get:function(){let n=Object.create(t||{});return n.this=this,e(n)}}]]));s("set",(r,e,t)=>(t=t?i(t):()=>{},n=>[[nr,r,{set:function(o){let f=Object.create(n||{});f.this=this,f[e]=o,t(f)}}]]));var be=20,ee=200;c.prop=r=>Pr(r)!==58;var rt=r=>r==null||typeof r=="string"||[":",",","...","get","set"].includes(r[0]);W("[]",ee);W("{}",ee);y(":",be-1,!0);s("{}",(r,e)=>{if(e!==void 0)return;if(!rt(r))return i(["{",r]);r=r?r[0]!==","?[r]:r.slice(1):[];let t=r.map(n=>i(typeof n=="string"?[":",n,n]:n));return n=>{let o={},f={};for(let p of t.flatMap(l=>l(n)))if(p[0]===nr){let[,l,A]=p;f[l]={...f[l],...A,configurable:!0,enumerable:!0}}else o[p[0]]=p[1];for(let p in f)Object.defineProperty(o,p,f[p]);return o}});s("{",r=>(r=r?i(r):()=>{},e=>r(Object.create(e))));s(":",(r,e)=>(e=i(e),Array.isArray(r)?(r=i(r),t=>[[r(t),e(t)]]):t=>[[r,e(t)]]));var et=170,or=96,tt=36,nt=123,ot=92,it={n:`
8
- `,r:"\r",t:" ",b:"\b",f:"\f",v:"\v"},te=()=>{let r=[];for(let e="",t;(t=m.charCodeAt(u))!==or;)t?t===ot?(h(),e+=it[m[u]]||m[u],h()):t===tt&&m.charCodeAt(u+1)===nt?(e&&r.push([,e]),e="",h(2),r.push(a(0,125))):(e+=m[u],h(),t=m.charCodeAt(u),t===or&&e&&r.push([,e])):R("Unterminated template");return h(),r},st=T[or];T[or]=(r,e)=>r&&e<et?c.asi&&c.newline?void 0:(h(),["``",r,...te()]):r?st?.(r,e):(h(),(t=>t.length<2&&t[0]?.[0]===void 0?t[0]||[,""]:["`",...t])(te()));s("`",(...r)=>(r=r.map(i),e=>r.map(t=>t(e)).join("")));s("``",(r,...e)=>{r=i(r);let t=[],n=[];for(let f of e)Array.isArray(f)&&f[0]===void 0?t.push(f[1]):n.push(i(f));let o=Object.assign([...t],{raw:t});return f=>r(f)(o,...n.map(p=>p(f)))});c.string["'"]=!0;c.number={"0x":16,"0b":2,"0o":8};var ir=5,ft=59,M=()=>(d()===123||R("Expected {"),h(),a(ir-.5,125)||null),X=()=>d()!==123?a(ir+.5):(h(),a(ir-.5,125)||null),lt=()=>{let r=u;return d()===ft&&h(),d(),I("else")?(h(4),!0):(v(r),!1)};w("if",ir+1,()=>{d();let r=["if",P(),X()];return lt()&&r.push(X()),r});s("if",(r,e,t)=>(r=i(r),e=i(e),t=t!==void 0?i(t):null,n=>r(n)?e(n):t?.(n)));var pt=200;w("function",pt,()=>{d();let r=!1;m[u]==="*"&&(r=!0,h(),d());let e=N(c.id);return e&&d(),r?["function*",e,P()||null,M()]:["function",e,P()||null,M()]});s("function",(r,e,t)=>{t=t?i(t):()=>{};let n=e?e[0]===","?e.slice(1):[e]:[],o=null,f=-1,p=n[n.length-1];return Array.isArray(p)&&p[0]==="..."&&(f=n.length-1,o=p[1],n.length--),l=>{let A=(...g)=>{let S={};n.forEach((C,_)=>S[C]=g[_]),o&&(S[o]=g.slice(f));let E=new Proxy(S,{get:(C,_)=>_ in C?C[_]:l[_],set:(C,_,ce)=>((_ in C?C:l)[_]=ce,!0),has:(C,_)=>_ in C||_ in l});try{return t(E)}catch(C){if(C===B)return C[0];throw C}};return r&&(l[r]=A),A}});s("function*",(r,e,t)=>{throw Error("Generator functions are not supported in evaluation")});var sr=140,Er=20;O("await",sr);w("yield",sr,()=>(d(),m[u]==="*"?(h(),d(),["yield*",a(Er)]):["yield",a(Er)]));w("async",sr,()=>{if(d(),I("function"))return["async",a(sr)];let r=a(Er-.5);return r&&["async",r]});s("async",r=>{let e=i(r);return t=>{let n=e(t);return async function(...o){return n(...o)}}});s("await",r=>(r=i(r),async e=>await r(e)));s("yield",r=>(r=r?i(r):null,e=>{throw{__yield__:r?r(e):void 0}}));s("yield*",r=>(r=i(r),e=>{throw{__yield_all__:r(e)}}));var Sr=200,ut=140,ct=90,mt=Symbol("static");O("static",ut);y("instanceof",ct);k("#",Sr,r=>{if(r)return;let e=N(c.id);return e?"#"+e:void 0});w("class",Sr,()=>{d();let r=N(c.id)||null;if(r==="extends")r=null,d();else{if(d(),!I("extends"))return["class",r,null,M()];h(7),d()}return["class",r,a(Sr),M()]});var dt=r=>{throw Error(r)};s("instanceof",(r,e)=>(r=i(r),e=i(e),t=>r(t)instanceof e(t)));s("class",(r,e,t)=>(e=e?i(e):null,t=t?i(t):null,n=>{let o=e?e(n):Object,f=function(...p){if(!(this instanceof f))return dt("Class constructor must be called with new");let l=e?Reflect.construct(o,p,f):this;return f.prototype.__constructor__&&f.prototype.__constructor__.apply(l,p),l};if(Object.setPrototypeOf(f.prototype,o.prototype),Object.setPrototypeOf(f,o),t){let p=Object.create(n);p.super=o;let l=t(p),A=Array.isArray(l)&&typeof l[0]?.[0]=="string"?l:[];for(let[g,S]of A)g==="constructor"?f.prototype.__constructor__=S:f.prototype[g]=S}return r&&(n[r]=f),f}));s("static",r=>(r=i(r),e=>[[mt,r(e)]]));var at=140,kr=47,ht=92,At=r=>r===ht?2:r&&r!==kr,yt=r=>r===103||r===105||r===109||r===115||r===117||r===121;k("/",at,r=>{if(r)return;let e=m.charCodeAt(u);if(e===kr||e===42||e===43||e===63||e===61)return;let t=N(At);m.charCodeAt(u)===kr||R("Unterminated regex"),h();let n=N(yt);try{new RegExp(t,n)}catch(o){R("Invalid regex: "+o.message)}return n?["//",t,n]:["//",t]});s("//",(r,e)=>{let t=new RegExp(r,e||"");return()=>t});var U=Symbol("break"),H=Symbol("continue"),K=5,V=125,Y=59;w("while",K+1,()=>(d(),["while",P(),X()]));w("do",K+1,()=>(r=>(d(),h(5),d(),["do",r,P()]))(X()));w("for",K+1,()=>(d(),I("await")?(h(5),d(),["for await",P(),X()]):["for",P(),X()]));w("break",K+1,()=>{c.asi&&(c.newline=!1);let r=u;d();let e=m.charCodeAt(u);if(!e||e===V||e===Y||c.newline)return["break"];let t=N(c.id);if(!t)return["break"];d();let n=m.charCodeAt(u);return!n||n===V||n===Y||c.newline?["break",t]:(v(r),["break"])});w("continue",K+1,()=>{c.asi&&(c.newline=!1);let r=u;d();let e=m.charCodeAt(u);if(!e||e===V||e===Y||c.newline)return["continue"];let t=N(c.id);if(!t)return["continue"];d();let n=m.charCodeAt(u);return!n||n===V||n===Y||c.newline?["continue",t]:(v(r),["continue"])});w("return",K+1,()=>{c.asi&&(c.newline=!1);let r=d();return!r||r===V||r===Y||c.newline?["return"]:["return",a(K)]});s("while",(r,e)=>(r=i(r),e=i(e),t=>{let n;for(;r(t);)try{n=e(t)}catch(o){if(o===U)break;if(o===H)continue;if(o===B)return o[0];throw o}return n}));s("do",(r,e)=>(r=i(r),e=i(e),t=>{let n;do try{n=r(t)}catch(o){if(o===U)break;if(o===H)continue;if(o===B)return o[0];throw o}while(e(t));return n}));s("for",(r,e)=>{if(Array.isArray(r)&&r[0]===";"){let[,t,n,o]=r;return t=t?i(t):null,n=n?i(n):()=>!0,o=o?i(o):null,e=i(e),f=>{let p;for(t?.(f);n(f);o?.(f))try{p=e(f)}catch(l){if(l===U)break;if(l===H)continue;if(l===B)return l[0];throw l}return p}}if(Array.isArray(r)&&(r[0]==="in"||r[0]==="of")){let[t,n,o]=r;if(Array.isArray(n)&&(n[0]==="let"||n[0]==="const"||n[0]==="var")&&(n=n[1]),t==="in")return wt(n,o,e);if(t==="of")return gt(n,o,e)}});var gt=(r,e,t)=>{e=i(e),t=i(t);let n=Array.isArray(r);return o=>{let f,p=n?null:o[r];for(let l of e(o)){n?D(r,l,o):o[r]=l;try{f=t(o)}catch(A){if(A===U)break;if(A===H)continue;if(A===B)return A[0];throw A}}return n||(o[r]=p),f}},wt=(r,e,t)=>{e=i(e),t=i(t);let n=Array.isArray(r);return o=>{let f,p=n?null:o[r];for(let l in e(o)){n?D(r,l,o):o[r]=l;try{f=t(o)}catch(A){if(A===U)break;if(A===H)continue;if(A===B)return A[0];throw A}}return n||(o[r]=p),f}};s("break",()=>()=>{throw U});s("continue",()=>()=>{throw H});s("return",r=>(r=r!==void 0?i(r):null,e=>{throw B[0]=r?.(e),B}));var Ir=5;w("try",Ir+1,()=>{let r=["try",M()];return d(),I("catch")&&(h(5),d(),r.push(["catch",P(),M()])),d(),I("finally")&&(h(7),r.push(["finally",M()])),r});w("throw",Ir+1,()=>{if(c.asi&&(c.newline=!1),d(),c.newline)throw SyntaxError("Unexpected newline after throw");return["throw",a(Ir)]});s("try",(r,...e)=>{r=r?i(r):null;let t=e.find(l=>l?.[0]==="catch"),n=e.find(l=>l?.[0]==="finally"),o=t?.[1],f=t?.[2]?i(t[2]):null,p=n?.[1]?i(n[1]):null;return l=>{let A;try{A=r?.(l)}catch(g){if(g===U||g===H||g===B)throw g;if(o!=null&&f){let S=o in l,E=l[o];l[o]=g;try{A=f(l)}finally{S?l[o]=E:delete l[o]}}else if(!f)throw g}finally{p?.(l)}return A}});s("throw",r=>(r=i(r),e=>{throw r(e)}));var ie=5,Ct=20,ne=58,Et=59,se=125,Tr=0,fe=(r,e=r.length,t=r.charCodeAt(0),n=T[t])=>T[t]=(o,f,p)=>I(r)&&!o&&Tr||n?.(o,f,p);fe("case");fe("default");var oe=r=>{let e=[];for(;(r=d())!==se&&!I("case")&&!I("default");){if(r===Et){h();continue}e.push(a(ie-.5))||R()}return e.length>1?[";",...e]:e[0]||null},St=()=>{d()===123||R("Expected {"),h(),Tr++;let r=[];try{for(;d()!==se;)if(I("case")){v(u+4),d();let e=a(Ct-.5);d()===ne&&h(),r.push(["case",e,oe()])}else I("default")?(v(u+7),d()===ne&&h(),r.push(["default",oe()])):R("Expected case or default")}finally{Tr--}return h(),r};w("switch",ie+1,()=>d()===40&&["switch",P(),...St()]);s("switch",(r,...e)=>(r=i(r),e.length?(e=e.map(t=>[t[0]==="case"?i(t[1]):null,(t[0]==="case"?t[2]:t[1])?.[0]===";"?(t[0]==="case"?t[2]:t[1]).slice(1).map(i):(t[0]==="case"?t[2]:t[1])?[i(t[0]==="case"?t[2]:t[1])]:[]]),t=>{let n=r(t),o=!1,f;for(let[l,A]of e)if(o||l===null||l(t)===n)for(o=!0,p=0;p<A.length;p++)try{f=A[p](t)}catch(g){if(g===U)return f;throw g}var p;return f}):t=>r(t)));var le=5;w("debugger",le+1,()=>["debugger"]);w("with",le+1,()=>(d(),["with",P(),X()]));var Nr=5,Q=10,pe=42,kt=T[pe];T[pe]=(r,e)=>r?kt?.(r,e):(h(),"*");k("from",Q+1,r=>r?r[0]!=="="&&r[0]!==","&&(d(),["from",r,a(Q+1)]):!1);k("as",Q+2,r=>r?(d(),["as",r,a(Q+2)]):!1);w("import",Nr,()=>I(".meta")?(h(5),["import.meta"]):["import",a(Q)]);w("export",Nr,()=>(d(),["export",a(Nr)]));w("default",Q+1,()=>d()!==58&&(d(),["default",a(Q)]));s("import",()=>()=>{});s("export",()=>()=>{});s("from",(r,e)=>()=>{});s("as",(r,e)=>()=>{});s("default",r=>i(r));var ue=j.asi??j[";"],Rr=0,It=100;c.asi=(r,e,t,n,o)=>{if(!(e>=ue||Rr>=It)){Rr++;try{n=t(ue-.5)}finally{Rr--}if(n)return o=n?.[0]===";"?n.slice(1):[n],r?.[0]===";"?(r.push(...o),r):[";",r,...o]}};export{ur as access,y as binary,i as compile,m as cur,Wr as default,R as err,a as expr,W as group,Tt as id,u as idx,w as keyword,$ as literal,Or as loc,T as lookup,pr as nary,N as next,s as operator,lr as operators,P as parens,c as parse,Pr as peek,j as prec,v as seek,h as skip,d as space,k as token,O as unary,I as word};
4
+ `,""+o}${u}${l}`)},Or=(r,e=p)=>(Array.isArray(r)&&(r.loc=e),r),N=(r,e=p,t)=>{for(;t=r(m.charCodeAt(p));)p+=t;return m.slice(e,p)},h=(r=1)=>m[p+=r],_=r=>p=r,a=(r=0,e)=>{let t,n,o,f,u;for(e&&c.asi&&(c.newline=!1);(t=c.space())&&(u=c.newline,1)&&t!==e&&(o=(n&&t===91&&fr&&c.asi?.(n,r,a)||null)??((f=T[t])&&f(n,r))??(n&&u&&c.asi?.(n,r,a))??(!n&&N(c.id)));)n=o;return e&&(t==e?(p++,e===125&&c.asi&&(c.newline=!0)):R("Unclosed "+String.fromCharCode(e-(e>42?2:1)))),n},d=(r,e=p)=>{for(fr=!1;(r=m.charCodeAt(p))<=32;)c.asi&&r===10&&(c.newline=fr=!0),p++;return r},_r=(r=p)=>{for(;m.charCodeAt(r)<=32;)r++;return m.charCodeAt(r)},Ft=c.id=r=>r>=48&&r<=57||r>=65&&r<=90||r>=97&&r<=122||r==36||r==95||r>=192&&r!=215&&r!=247,I=(r,e=r.length)=>m.substr(p,e)===r&&!c.id(m.charCodeAt(p+e)),v=()=>(h(),a(0,41)),T=[],j={},k=(r,e=32,t,n=r.charCodeAt(0),o=r.length,f=T[n],u=r.toUpperCase()!==r,l,A)=>(e=j[r]=!f&&j[r]||e,T[n]=(w,S,E,C=p)=>(l=E,(E?r==E:(o<2||r.charCodeAt(1)===m.charCodeAt(p+1)&&(o<3||m.substr(p,o)==r))&&(!u||!c.id(m.charCodeAt(p+o)))&&(l=E=r))&&S<e&&(p+=o,(A=t(w))?Or(A,C):(p=C,l=0,!u&&!f&&!w&&R()),A)||f?.(w,S,l))),y=(r,e,t=!1)=>k(r,e,n=>n&&(o=>o&&[r,n,o])(a(e-(t?.5:0)))),P=(r,e,t)=>k(r,e,n=>t?n&&[r,n]:!n&&(n=a(e-.5))&&[r,n]),$=(r,e)=>k(r,200,t=>!t&&[,e]),pr=(r,e,t)=>k(r,e,(n,o)=>(o=a(e-(t?.5:0)),n?.[0]!==r&&(n=[r,n||null]),o?.[0]===r?n.push(...o.slice(1)):n.push(o||null),n)),W=(r,e)=>k(r[0],e,t=>!t&&[r,a(0,r.charCodeAt(1))||null]),ur=(r,e)=>k(r[0],e,t=>t&&[r,t,a(0,r.charCodeAt(1))||null]),g=(r,e,t,n=r.charCodeAt(0),o=r.length,f=T[n],u)=>T[n]=(l,A,w,S=p)=>!l&&(w?r==w:(o<2||m.substr(p,o)==r)&&(w=r))&&A<e&&!c.id(m.charCodeAt(p+o))&&(!c.prop||c.prop(p+o))&&(_(p+o),(u=t())?Or(u,S):_(S),u)||f?.(l,A,w);Object.defineProperty(c,"space",{configurable:!0,enumerable:!0,get:()=>d,set:r=>d=r});var lr={},s=(r,e,t=lr[r])=>lr[r]=(...n)=>e(...n)||t?.(...n),i=r=>Array.isArray(r)?r[0]==null?(e=>()=>e)(r[1]):lr[r[0]]?.(...r.slice(1))??R(`Unknown operator: ${r[0]}`,r?.loc):r===void 0?()=>{}:e=>e?.[r];var q=46,z=48,x=57,me=69,de=101,ae=43,he=45,Z=95,Pr=110,Ae=97,ye=102,we=65,ge=70,vr=r=>r.indexOf("_")<0?r:r.replaceAll("_",""),cr=r=>{let e=vr(N(t=>t===q&&m.charCodeAt(p+1)!==q||t>=z&&t<=x||t===Z||((t===me||t===de)&&((t=m.charCodeAt(p+1))>=z&&t<=x||t===ae||t===he)?2:0)));return m.charCodeAt(p)===Pr?(h(),[,BigInt(e)]):(r=+e)!=r?R():[,r]},Ce={2:r=>r===48||r===49||r===Z,8:r=>r>=48&&r<=55||r===Z,16:r=>r>=z&&r<=x||r>=Ae&&r<=ye||r>=we&&r<=ge||r===Z};c.number=null;T[q]=r=>!r&&m.charCodeAt(p+1)!==q&&cr();for(let r=z;r<=x;r++)T[r]=e=>e?void 0:cr();T[z]=r=>{if(r)return;let e=c.number;if(e){for(let[t,n]of Object.entries(e))if(t[0]==="0"&&m[p+1]?.toLowerCase()===t[1]){h(2);let o=vr(N(Ce[n]));return m.charCodeAt(p)===Pr?(h(),[,BigInt("0"+t[1]+o)]):[,parseInt(o,n)]}}return cr()};var Ee=92,Mr=34,Br=39,Se={n:`
5
+ `,r:"\r",t:" ",b:"\b",f:"\f",v:"\v"},Lr=r=>(e,t,n="")=>{if(!(e||!c.string?.[String.fromCharCode(r)]))return h(),N(o=>o-r&&(o===Ee?(n+=Se[m[p+1]]||m[p+1],2):(n+=m[p],1))),m[p]===String.fromCharCode(r)?h():R("Bad string"),[,n]};T[Mr]=Lr(Mr);T[Br]=Lr(Br);c.string={'"':!0};var ke=20;"= += -= *= /= %= |= &= ^= >>= <<=".split(" ").map(r=>y(r,ke,!0));var Fr=(r,e,t,n)=>typeof r=="string"?o=>e(o,r,o):r[0]==="."?(t=i(r[1]),n=r[2],o=>e(t(o),n,o)):r[0]==="[]"&&r.length===3?(t=i(r[1]),n=i(r[2]),o=>e(t(o),n(o),o)):r[0]==="()"&&r.length===2?Fr(r[1],e):(()=>{throw Error("Invalid assignment target")})(),Ur={"=":(r,e,t)=>r[e]=t,"+=":(r,e,t)=>r[e]+=t,"-=":(r,e,t)=>r[e]-=t,"*=":(r,e,t)=>r[e]*=t,"/=":(r,e,t)=>r[e]/=t,"%=":(r,e,t)=>r[e]%=t,"|=":(r,e,t)=>r[e]|=t,"&=":(r,e,t)=>r[e]&=t,"^=":(r,e,t)=>r[e]^=t,">>=":(r,e,t)=>r[e]>>=t,"<<=":(r,e,t)=>r[e]<<=t};for(let r in Ur)s(r,(e,t)=>(t=i(t),Fr(e,(n,o,f)=>Ur[r](n,o,t(f)))));var Ie=30,Te=40,Ne=140;P("!",Ne);y("||",Ie);y("&&",Te);s("!",r=>(r=i(r),e=>!r(e)));s("||",(r,e)=>(r=i(r),e=i(e),t=>r(t)||e(t)));s("&&",(r,e)=>(r=i(r),e=i(e),t=>r(t)&&e(t)));var Re=50,Oe=60,_e=70,Dr=100,Pe=140;y("|",Re);y("&",_e);y("^",Oe);y(">>",Dr);y("<<",Dr);P("~",Pe);s("~",r=>(r=i(r),e=>~r(e)));s("|",(r,e)=>(r=i(r),e=i(e),t=>r(t)|e(t)));s("&",(r,e)=>(r=i(r),e=i(e),t=>r(t)&e(t)));s("^",(r,e)=>(r=i(r),e=i(e),t=>r(t)^e(t)));s(">>",(r,e)=>(r=i(r),e=i(e),t=>r(t)>>e(t)));s("<<",(r,e)=>(r=i(r),e=i(e),t=>r(t)<<e(t)));var b=90;y("<",b);y(">",b);y("<=",b);y(">=",b);s(">",(r,e)=>(r=i(r),e=i(e),t=>r(t)>e(t)));s("<",(r,e)=>(r=i(r),e=i(e),t=>r(t)<e(t)));s(">=",(r,e)=>(r=i(r),e=i(e),t=>r(t)>=e(t)));s("<=",(r,e)=>(r=i(r),e=i(e),t=>r(t)<=e(t)));var Gr=80;y("==",Gr);y("!=",Gr);s("==",(r,e)=>(r=i(r),e=i(e),t=>r(t)==e(t)));s("!=",(r,e)=>(r=i(r),e=i(e),t=>r(t)!=e(t)));var Xr=110,mr=120,Hr=140;y("+",Xr);y("-",Xr);y("*",mr);y("/",mr);y("%",mr);P("+",Hr);P("-",Hr);s("+",(r,e)=>e!==void 0?(r=i(r),e=i(e),t=>r(t)+e(t)):(r=i(r),t=>+r(t)));s("-",(r,e)=>e!==void 0?(r=i(r),e=i(e),t=>r(t)-e(t)):(r=i(r),t=>-r(t)));s("*",(r,e)=>(r=i(r),e=i(e),t=>r(t)*e(t)));s("/",(r,e)=>(r=i(r),e=i(e),t=>r(t)/e(t)));s("%",(r,e)=>(r=i(r),e=i(e),t=>r(t)%e(t)));var rr=150;k("++",rr,r=>r?["++",r,null]:["++",a(rr-1)]);k("--",rr,r=>r?["--",r,null]:["--",a(rr-1)]);var dr=(r,e,t,n)=>typeof r=="string"?o=>e(o,r):r[0]==="."?(t=i(r[1]),n=r[2],o=>e(t(o),n)):r[0]==="[]"&&r.length===3?(t=i(r[1]),n=i(r[2]),o=>e(t(o),n(o))):r[0]==="()"&&r.length===2?dr(r[1],e):(()=>{throw Error("Invalid increment target")})();s("++",(r,e)=>dr(r,e===null?(t,n)=>t[n]++:(t,n)=>++t[n]));s("--",(r,e)=>dr(r,e===null?(t,n)=>t[n]--:(t,n)=>--t[n]));var ve=5,Me=10;pr(",",Me);pr(";",ve,!0);var Kr=(...r)=>(r=r.map(i),e=>{let t;for(let n of r)t=n(e);return t});s(",",Kr);s(";",Kr);var Be=170;W("()",Be);var F=r=>r?.[0]==="_"&&r[1]==="_"||r==="constructor"||r==="prototype",ar=170;ur("[]",ar);y(".",ar);ur("()",ar);var er=r=>{throw Error(r)};s("[]",(r,e)=>e===void 0?(r=r?r[0]===","?r.slice(1):[r]:[],r=r.map(t=>t==null?(()=>{}):t[0]==="..."?(t=i(t[1]),n=>t(n)):(t=i(t),n=>[t(n)])),t=>r.flatMap(n=>n(t))):(e==null&&er("Missing index"),r=i(r),e=i(e),t=>{let n=e(t);return F(n)?void 0:r(t)[n]}));s(".",(r,e)=>(r=i(r),e=e[0]?e:e[1],F(e)?()=>{}:t=>r(t)[e]));s("()",(r,e)=>{if(e===void 0)return r==null?er("Empty ()"):i(r);let t=o=>o?.[0]===","&&o.slice(1).some(f=>f==null||t(f));t(e)&&er("Empty argument");let n=e?e[0]===","?(e=e.slice(1).map(i),o=>e.map(f=>f(o))):(e=i(e),o=>[e(o)]):()=>[];return hr(r,(o,f,u)=>o[f](...n(u)))});var B=r=>typeof r=="string"||Array.isArray(r)&&(r[0]==="."||r[0]==="?."||r[0]==="[]"&&r.length===3||r[0]==="?.[]"||r[0]==="()"&&r.length===2&&B(r[1])||r[0]==="{}"),hr=(r,e,t,n)=>r==null?er("Empty ()"):r[0]==="()"&&r.length==2?hr(r[1],e):typeof r=="string"?o=>e(o,r,o):r[0]==="."?(t=i(r[1]),n=r[2],o=>e(t(o),n,o)):r[0]==="?."?(t=i(r[1]),n=r[2],o=>{let f=t(o);return f==null?void 0:e(f,n,o)}):r[0]==="[]"&&r.length===3?(t=i(r[1]),n=i(r[2]),o=>e(t(o),n(o),o)):r[0]==="?.[]"?(t=i(r[1]),n=i(r[2]),o=>{let f=t(o);return f==null?void 0:e(f,n(o),o)}):(r=i(r),o=>e([r(o)],0,o)),D=hr;var Qr=new WeakMap,Le=(r,...e)=>typeof r=="string"?i(c(r)):Qr.get(r)||Qr.set(r,Ue(r,e)).get(r),$r=57344,Ue=(r,e)=>{let t=r.reduce((f,u,l)=>f+(l?String.fromCharCode($r+l-1):"")+u,""),n=c(t),o=f=>{if(typeof f=="string"&&f.length===1){let u=f.charCodeAt(0)-$r,l;if(u>=0&&u<e.length)return l=e[u],Fe(l)?l:[,l]}return Array.isArray(f)?f.map(o):f};return i(o(n))},Fe=r=>typeof r=="string"||Array.isArray(r)&&(typeof r[0]=="string"||r[0]===void 0),jr=Le;var De=32,Ge=c.space;c.comment??={"//":`
6
+ `,"/*":"*/"};var Ar;c.space=()=>{Ar||(Ar=Object.entries(c.comment).map(([o,f])=>[o,f,o.charCodeAt(0)]));for(var r;r=Ge();){for(var e=0,t;t=Ar[e++];)if(r===t[2]&&m.substr(p,t[0].length)===t[0]){var n=p+t[0].length;if(t[1]===`
7
+ `)for(;m.charCodeAt(n)>=De;)n++;else{for(;m[n]&&m.substr(n,t[1].length)!==t[1];)n++;m[n]&&(n+=t[1].length)}_(n),r=0;break}if(r)return r}return r};var Wr=80;y("===",Wr);y("!==",Wr);s("===",(r,e)=>(r=i(r),e=i(e),t=>r(t)===e(t)));s("!==",(r,e)=>(r=i(r),e=i(e),t=>r(t)!==e(t)));var Xe=30;y("??",Xe);s("??",(r,e)=>(r=i(r),e=i(e),t=>r(t)??e(t)));var He=130,Ke=20;y("**",He,!0);y("**=",Ke,!0);s("**",(r,e)=>(r=i(r),e=i(e),t=>r(t)**e(t)));var Qe=r=>{throw Error(r)};s("**=",(r,e)=>(B(r)||Qe("Invalid assignment target"),e=i(e),D(r,(t,n,o)=>t[n]**=e(o))));var zr=90;y("in",zr);y("of",zr);s("in",(r,e)=>(r=i(r),e=i(e),t=>r(t)in e(t)));var $e=20,je=100,We=r=>{throw Error(r)};y(">>>",je);y(">>>=",$e,!0);s(">>>",(r,e)=>(r=i(r),e=i(e),t=>r(t)>>>e(t)));s(">>>=",(r,e)=>(B(r)||We("Invalid assignment target"),e=i(e),D(r,(t,n,o)=>t[n]>>>=e(o))));var yr=5,ze=10,Je=20,Ve=r=>r[0]?.[0]===","?r[0].slice(1):r,X=(r,e,t)=>{if(typeof r=="string"){t[r]=e;return}let[n,...o]=r,f=Ve(o);if(n==="{}"){let u=[];for(let l of f){if(Array.isArray(l)&&l[0]==="..."){let C={};for(let O in e)u.includes(O)||(C[O]=e[O]);t[l[1]]=C;break}let A,w,S;typeof l=="string"?A=w=l:l[0]==="="?(typeof l[1]=="string"?A=w=l[1]:[,A,w]=l[1],S=l[2]):[,A,w]=l,u.push(A);let E=e[A];E===void 0&&S&&(E=i(S)(t)),X(w,E,t)}}else if(n==="[]"){let u=0;for(let l of f){if(l===null){u++;continue}if(Array.isArray(l)&&l[0]==="..."){t[l[1]]=e.slice(u);break}let A=l,w;Array.isArray(l)&&l[0]==="="&&([,A,w]=l);let S=e[u++];S===void 0&&w&&(S=i(w)(t)),X(A,S,t)}}},Jr=r=>{if(r==="let"){let t=p;if(d(),I("in")){_(t);return}_(t)}let e=a(ze-1);return e?.[0]==="in"||e?.[0]==="of"?[e[0],[r,e[1]],e[2]]:e?.[0]===","?[r,...e.slice(1)]:[r,e]};g("let",yr+1,()=>Jr("let"));g("const",yr+1,()=>Jr("const"));g("var",yr,()=>(d(),["var",a(Je)]));var Vr=(...r)=>(r=r.map(e=>{if(typeof e=="string")return t=>{t[e]=void 0};if(e[0]==="="){let[,t,n]=e,o=i(n);return typeof t=="string"?f=>{f[t]=o(f)}:f=>X(t,o(f),f)}return i(e)}),e=>{for(let t of r)t(e)});s("let",Vr);s("const",Vr);s("var",r=>typeof r=="string"?e=>{e[r]=void 0}:()=>{});var wr=20,tr=r=>{throw Error(r)};y("||=",wr,!0);y("&&=",wr,!0);y("??=",wr,!0);s("=",(r,e)=>{if(Array.isArray(r)&&(r[0]==="let"||r[0]==="const"||r[0]==="var")){let t=r[1];return e=i(e),typeof t=="string"?n=>{n[t]=e(n)}:n=>X(t,e(n),n)}return B(r)||tr("Invalid assignment target"),e=i(e),D(r,(t,n,o)=>t[n]=e(o))});s("||=",(r,e)=>(B(r)||tr("Invalid assignment target"),e=i(e),D(r,(t,n,o)=>t[n]||=e(o))));s("&&=",(r,e)=>(B(r)||tr("Invalid assignment target"),e=i(e),D(r,(t,n,o)=>t[n]&&=e(o))));s("??=",(r,e)=>(B(r)||tr("Invalid assignment target"),e=i(e),D(r,(t,n,o)=>t[n]??=e(o))));$("true",!0);$("false",!1);$("null",null);g("undefined",200,()=>[]);$("NaN",NaN);$("Infinity",1/0);var gr=20;k("?",gr,(r,e,t)=>r&&(e=a(gr-1))&&N(n=>n===58)&&(t=a(gr-1),["?",r,e,t]));s("?",(r,e,t)=>(r=i(r),e=i(e),t=i(t),n=>r(n)?e(n):t(n)));var M=[],Ye=20;y("=>",Ye,!0);s("=>",(r,e)=>{r=r?.[0]==="()"?r[1]:r;let t=r?r[0]===","?r.slice(1):[r]:[],n=-1,o=null,f=t[t.length-1];Array.isArray(f)&&f[0]==="..."&&(n=t.length-1,o=f[1],t.length--);let u=e?.[0]==="{}";return e=i(u?["{",e[1]]:e),l=>(...A)=>{let w={};t.forEach((E,C)=>w[E]=A[C]),o&&(w[o]=A.slice(n));let S=new Proxy(w,{get:(E,C)=>C in E?E[C]:l?.[C],set:(E,C,O)=>((C in E?E:l)[C]=O,!0),has:(E,C)=>C in E||(l?C in l:!1)});try{let E=e(S);return u?void 0:E}catch(E){if(E===M)return E[0];throw E}}});var Ze=140;P("...",Ze);s("...",r=>(r=i(r),e=>Object.entries(r(e))));var Yr=170;k("?.",Yr,(r,e)=>{if(!r)return;let t=d();return t===40?(h(),["?.()",r,a(0,41)||null]):t===91?(h(),["?.[]",r,a(0,93)]):(e=a(Yr),e?["?.",r,e]:void 0)});s("?.",(r,e)=>(r=i(r),F(e)?()=>{}:t=>r(t)?.[e]));s("?.[]",(r,e)=>(r=i(r),e=i(e),t=>{let n=e(t);return F(n)?void 0:r(t)?.[n]}));s("?.()",(r,e)=>{let t=e?e[0]===","?(e=e.slice(1).map(i),o=>e.map(f=>f(o))):(e=i(e),o=>[e(o)]):()=>[];if(r[0]==="?."){let o=i(r[1]),f=r[2];return F(f)?()=>{}:u=>o(u)?.[f]?.(...t(u))}if(r[0]==="?.[]"){let o=i(r[1]),f=i(r[2]);return u=>{let l=o(u),A=f(u);return F(A)?void 0:l?.[A]?.(...t(u))}}if(r[0]==="."){let o=i(r[1]),f=r[2];return F(f)?()=>{}:u=>o(u)?.[f]?.(...t(u))}if(r[0]==="[]"&&r.length===3){let o=i(r[1]),f=i(r[2]);return u=>{let l=o(u),A=f(u);return F(A)?void 0:l?.[A]?.(...t(u))}}let n=i(r);return o=>n(o)?.(...t(o))});var J=140;P("typeof",J);P("void",J);P("delete",J);g("new",J,()=>I(".target")?(h(7),["new.target"]):["new",a(J)]);s("typeof",r=>(r=i(r),e=>typeof r(e)));s("void",r=>(r=i(r),e=>(r(e),void 0)));s("delete",r=>{if(r[0]==="."){let e=i(r[1]),t=r[2];return n=>delete e(n)[t]}if(r[0]==="[]"){let e=i(r[1]),t=i(r[2]);return n=>delete e(n)[t(n)]}return()=>!0});s("new",r=>{let e=i(r?.[0]==="()"?r[1]:r),t=r?.[0]==="()"?r[2]:null,n=t?t[0]===","?(o=>f=>o.map(u=>u(f)))(t.slice(1).map(i)):(o=>f=>[o(f)])(i(t)):()=>[];return o=>new(e(o))(...n(o))});var nr=Symbol("accessor"),Cr=20,qe=40,Zr=41,qr=123,xr=125,br=r=>e=>{if(e)return;d();let t=N(c.id);if(!t||(d(),m.charCodeAt(p)!==qe))return!1;h();let n=a(0,Zr);return d(),m.charCodeAt(p)!==qr?!1:(h(),[r,t,n,a(0,xr)])};k("get",Cr-1,br("get"));k("set",Cr-1,br("set"));k("(",Cr-1,r=>{if(!r||typeof r!="string")return;let e=a(0,Zr)||null;if(d(),m.charCodeAt(p)===qr)return h(),[":",r,["=>",["()",e],a(0,xr)||null]]});s("get",(r,e)=>(e=e?i(e):()=>{},t=>[[nr,r,{get:function(){let n=Object.create(t||{});return n.this=this,e(n)}}]]));s("set",(r,e,t)=>(t=t?i(t):()=>{},n=>[[nr,r,{set:function(o){let f=Object.create(n||{});f.this=this,f[e]=o,t(f)}}]]));var xe=20,re=200;c.prop=r=>_r(r)!==58;var be=r=>r==null||typeof r=="string"||[":",",","...","get","set"].includes(r[0]);W("[]",re);W("{}",re);y(":",xe-1,!0);s("{}",(r,e)=>{if(e!==void 0)return;if(!be(r))return i(["{",r]);r=r?r[0]!==","?[r]:r.slice(1):[];let t=r.map(n=>i(typeof n=="string"?[":",n,n]:n));return n=>{let o={},f={};for(let u of t.flatMap(l=>l(n)))if(u[0]===nr){let[,l,A]=u;f[l]={...f[l],...A,configurable:!0,enumerable:!0}}else o[u[0]]=u[1];for(let u in f)Object.defineProperty(o,u,f[u]);return o}});s("{",r=>(r=r?i(r):()=>{},e=>r(Object.create(e))));s(":",(r,e)=>(e=i(e),Array.isArray(r)?(r=i(r),t=>[[r(t),e(t)]]):t=>[[r,e(t)]]));var rt=170,or=96,et=36,tt=123,nt=92,ot={n:`
8
+ `,r:"\r",t:" ",b:"\b",f:"\f",v:"\v"},ee=()=>{let r=[];for(let e="",t;(t=m.charCodeAt(p))!==or;)t?t===nt?(h(),e+=ot[m[p]]||m[p],h()):t===et&&m.charCodeAt(p+1)===tt?(e&&r.push([,e]),e="",h(2),r.push(a(0,125))):(e+=m[p],h(),t=m.charCodeAt(p),t===or&&e&&r.push([,e])):R("Unterminated template");return h(),r},it=T[or];T[or]=(r,e)=>r&&e<rt?c.asi&&c.newline?void 0:(h(),["``",r,...ee()]):r?it?.(r,e):(h(),(t=>t.length<2&&t[0]?.[0]===void 0?t[0]||[,""]:["`",...t])(ee()));s("`",(...r)=>(r=r.map(i),e=>r.map(t=>t(e)).join("")));s("``",(r,...e)=>{r=i(r);let t=[],n=[];for(let f of e)Array.isArray(f)&&f[0]===void 0?t.push(f[1]):n.push(i(f));let o=Object.assign([...t],{raw:t});return f=>r(f)(o,...n.map(u=>u(f)))});c.string["'"]=!0;c.number={"0x":16,"0b":2,"0o":8};var st=92,ft=117,lt=123,pt=125,ut=183,ct=c.id,te=r=>r>=48&&r<=57||r>=65&&r<=70||r>=97&&r<=102,mt=(r=p+2,e,t=0,n=0)=>{if(m.charCodeAt(p)!==st||m.charCodeAt(p+1)!==ft)return 0;if(m.charCodeAt(r)===lt){for(;te(e=m.charCodeAt(++r));)t=t*16+(e<=57?e-48:(e&31)+9);return r>p+3&&t<=1114111&&m.charCodeAt(r)===pt?r-p+1:0}for(;n<4&&te(m.charCodeAt(r+n));)n++;return n===4?6:0};c.id=r=>ct(r)||r===ut||mt();var ir=5,dt=59,L=()=>(d()===123||R("Expected {"),h(),a(ir-.5,125)||null),G=()=>d()!==123?a(ir+.5):(h(),a(ir-.5,125)||null),at=()=>{let r=p;return d()===dt&&h(),d(),I("else")?(h(4),!0):(_(r),!1)};g("if",ir+1,()=>{d();let r=["if",v(),G()];return at()&&r.push(G()),r});s("if",(r,e,t)=>(r=i(r),e=i(e),t=t!==void 0?i(t):null,n=>r(n)?e(n):t?.(n)));var ht=200;g("function",ht,()=>{d();let r=!1;m[p]==="*"&&(r=!0,h(),d());let e=N(c.id);return e&&d(),r?["function*",e,v()||null,L()]:["function",e,v()||null,L()]});s("function",(r,e,t)=>{t=t?i(t):()=>{};let n=e?e[0]===","?e.slice(1):[e]:[],o=null,f=-1,u=n[n.length-1];return Array.isArray(u)&&u[0]==="..."&&(f=n.length-1,o=u[1],n.length--),l=>{let A=(...w)=>{let S={};n.forEach((C,O)=>S[C]=w[O]),o&&(S[o]=w.slice(f));let E=new Proxy(S,{get:(C,O)=>O in C?C[O]:l[O],set:(C,O,ce)=>((O in C?C:l)[O]=ce,!0),has:(C,O)=>O in C||O in l});try{return t(E)}catch(C){if(C===M)return C[0];throw C}};return r&&(l[r]=A),A}});s("function*",(r,e,t)=>{throw Error("Generator functions are not supported in evaluation")});var sr=140,Er=20;P("await",sr);g("yield",sr,()=>(d(),m[p]==="*"?(h(),d(),["yield*",a(Er)]):["yield",a(Er)]));g("async",sr,()=>{if(d(),I("function"))return["async",a(sr)];let r=a(Er-.5);return r&&["async",r]});s("async",r=>{let e=i(r);return t=>{let n=e(t);return async function(...o){return n(...o)}}});s("await",r=>(r=i(r),async e=>await r(e)));s("yield",r=>(r=r?i(r):null,e=>{throw{__yield__:r?r(e):void 0}}));s("yield*",r=>(r=i(r),e=>{throw{__yield_all__:r(e)}}));var Sr=200,At=140,yt=90,wt=Symbol("static");P("static",At);y("instanceof",yt);k("#",Sr,r=>{if(r)return;let e=N(c.id);return e?"#"+e:void 0});g("class",Sr,()=>{d();let r=N(c.id)||null;if(r==="extends")r=null,d();else{if(d(),!I("extends"))return["class",r,null,L()];h(7),d()}return["class",r,a(Sr),L()]});var gt=r=>{throw Error(r)};s("instanceof",(r,e)=>(r=i(r),e=i(e),t=>r(t)instanceof e(t)));s("class",(r,e,t)=>(e=e?i(e):null,t=t?i(t):null,n=>{let o=e?e(n):Object,f=function(...u){if(!(this instanceof f))return gt("Class constructor must be called with new");let l=e?Reflect.construct(o,u,f):this;return f.prototype.__constructor__&&f.prototype.__constructor__.apply(l,u),l};if(Object.setPrototypeOf(f.prototype,o.prototype),Object.setPrototypeOf(f,o),t){let u=Object.create(n);u.super=o;let l=t(u),A=Array.isArray(l)&&typeof l[0]?.[0]=="string"?l:[];for(let[w,S]of A)w==="constructor"?f.prototype.__constructor__=S:f.prototype[w]=S}return r&&(n[r]=f),f}));s("static",r=>(r=i(r),e=>[[wt,r(e)]]));var Ct=140,kr=47,Et=92,St=r=>r===Et?2:r&&r!==kr,kt=r=>r===103||r===105||r===109||r===115||r===117||r===121;k("/",Ct,r=>{if(r)return;let e=m.charCodeAt(p);if(e===kr||e===42||e===43||e===63||e===61)return;let t=N(St);m.charCodeAt(p)===kr||R("Unterminated regex"),h();let n=N(kt);try{new RegExp(t,n)}catch(o){R("Invalid regex: "+o.message)}return n?["//",t,n]:["//",t]});s("//",(r,e)=>{let t=new RegExp(r,e||"");return()=>t});var U=Symbol("break"),H=Symbol("continue"),K=5,V=125,Y=59;g("while",K+1,()=>(d(),["while",v(),G()]));g("do",K+1,()=>(r=>(d(),h(5),d(),["do",r,v()]))(G()));g("for",K+1,()=>(d(),I("await")?(h(5),d(),["for await",v(),G()]):["for",v(),G()]));g("break",K+1,()=>{c.asi&&(c.newline=!1);let r=p;d();let e=m.charCodeAt(p);if(!e||e===V||e===Y||c.newline)return["break"];let t=N(c.id);if(!t)return["break"];d();let n=m.charCodeAt(p);return!n||n===V||n===Y||c.newline?["break",t]:(_(r),["break"])});g("continue",K+1,()=>{c.asi&&(c.newline=!1);let r=p;d();let e=m.charCodeAt(p);if(!e||e===V||e===Y||c.newline)return["continue"];let t=N(c.id);if(!t)return["continue"];d();let n=m.charCodeAt(p);return!n||n===V||n===Y||c.newline?["continue",t]:(_(r),["continue"])});g("return",K+1,()=>{c.asi&&(c.newline=!1);let r=d();return!r||r===V||r===Y||c.newline?["return"]:["return",a(K)]});s("while",(r,e)=>(r=i(r),e=i(e),t=>{let n;for(;r(t);)try{n=e(t)}catch(o){if(o===U)break;if(o===H)continue;if(o===M)return o[0];throw o}return n}));s("do",(r,e)=>(r=i(r),e=i(e),t=>{let n;do try{n=r(t)}catch(o){if(o===U)break;if(o===H)continue;if(o===M)return o[0];throw o}while(e(t));return n}));s("for",(r,e)=>{if(Array.isArray(r)&&r[0]===";"){let[,t,n,o]=r;return t=t?i(t):null,n=n?i(n):()=>!0,o=o?i(o):null,e=i(e),f=>{let u;for(t?.(f);n(f);o?.(f))try{u=e(f)}catch(l){if(l===U)break;if(l===H)continue;if(l===M)return l[0];throw l}return u}}if(Array.isArray(r)&&(r[0]==="in"||r[0]==="of")){let[t,n,o]=r;if(Array.isArray(n)&&(n[0]==="let"||n[0]==="const"||n[0]==="var")&&(n=n[1]),t==="in")return Tt(n,o,e);if(t==="of")return It(n,o,e)}});var It=(r,e,t)=>{e=i(e),t=i(t);let n=Array.isArray(r);return o=>{let f,u=n?null:o[r];for(let l of e(o)){n?X(r,l,o):o[r]=l;try{f=t(o)}catch(A){if(A===U)break;if(A===H)continue;if(A===M)return A[0];throw A}}return n||(o[r]=u),f}},Tt=(r,e,t)=>{e=i(e),t=i(t);let n=Array.isArray(r);return o=>{let f,u=n?null:o[r];for(let l in e(o)){n?X(r,l,o):o[r]=l;try{f=t(o)}catch(A){if(A===U)break;if(A===H)continue;if(A===M)return A[0];throw A}}return n||(o[r]=u),f}};s("break",()=>()=>{throw U});s("continue",()=>()=>{throw H});s("return",r=>(r=r!==void 0?i(r):null,e=>{throw M[0]=r?.(e),M}));var Ir=5;g("try",Ir+1,()=>{let r=["try",L()];return d(),I("catch")&&(h(5),d(),r.push(["catch",v(),L()])),d(),I("finally")&&(h(7),r.push(["finally",L()])),r});g("throw",Ir+1,()=>{if(c.asi&&(c.newline=!1),d(),c.newline)throw SyntaxError("Unexpected newline after throw");return["throw",a(Ir)]});s("try",(r,...e)=>{r=r?i(r):null;let t=e.find(l=>l?.[0]==="catch"),n=e.find(l=>l?.[0]==="finally"),o=t?.[1],f=t?.[2]?i(t[2]):null,u=n?.[1]?i(n[1]):null;return l=>{let A;try{A=r?.(l)}catch(w){if(w===U||w===H||w===M)throw w;if(o!=null&&f){let S=o in l,E=l[o];l[o]=w;try{A=f(l)}finally{S?l[o]=E:delete l[o]}}else if(!f)throw w}finally{u?.(l)}return A}});s("throw",r=>(r=i(r),e=>{throw r(e)}));var ie=5,Nt=20,ne=58,Rt=59,se=125,Tr=0,fe=(r,e=r.length,t=r.charCodeAt(0),n=T[t])=>T[t]=(o,f,u)=>I(r)&&!o&&Tr||n?.(o,f,u);fe("case");fe("default");var oe=r=>{let e=[];for(;(r=d())!==se&&!I("case")&&!I("default");){if(r===Rt){h();continue}e.push(a(ie-.5))||R()}return e.length>1?[";",...e]:e[0]||null},Ot=()=>{d()===123||R("Expected {"),h(),Tr++;let r=[];try{for(;d()!==se;)if(I("case")){_(p+4),d();let e=a(Nt-.5);d()===ne&&h(),r.push(["case",e,oe()])}else I("default")?(_(p+7),d()===ne&&h(),r.push(["default",oe()])):R("Expected case or default")}finally{Tr--}return h(),r};g("switch",ie+1,()=>d()===40&&["switch",v(),...Ot()]);s("switch",(r,...e)=>(r=i(r),e.length?(e=e.map(t=>[t[0]==="case"?i(t[1]):null,(t[0]==="case"?t[2]:t[1])?.[0]===";"?(t[0]==="case"?t[2]:t[1]).slice(1).map(i):(t[0]==="case"?t[2]:t[1])?[i(t[0]==="case"?t[2]:t[1])]:[]]),t=>{let n=r(t),o=!1,f;for(let[l,A]of e)if(o||l===null||l(t)===n)for(o=!0,u=0;u<A.length;u++)try{f=A[u](t)}catch(w){if(w===U)return f;throw w}var u;return f}):t=>r(t)));var le=5;g("debugger",le+1,()=>["debugger"]);g("with",le+1,()=>(d(),["with",v(),G()]));var Nr=5,Q=10,pe=42,_t=T[pe];T[pe]=(r,e)=>r?_t?.(r,e):(h(),"*");k("from",Q+1,r=>r?r[0]!=="="&&r[0]!==","&&(d(),["from",r,a(Q+1)]):!1);k("as",Q+2,r=>r?(d(),["as",r,a(Q+2)]):!1);g("import",Nr,()=>I(".meta")?(h(5),["import.meta"]):["import",a(Q)]);g("export",Nr,()=>(d(),["export",a(Nr)]));g("default",Q+1,()=>d()!==58&&(d(),["default",a(Q)]));s("import",()=>()=>{});s("export",()=>()=>{});s("from",(r,e)=>()=>{});s("as",(r,e)=>()=>{});s("default",r=>i(r));var ue=j.asi??j[";"],Pt=32,vt=10,Mt=59,Bt=c.space,Lt=(r=p,e)=>{for(;(e=m.charCodeAt(r))<=Pt;){if(e===vt)return!0;r++}};c.space=()=>{let r;for(;(r=Bt())===Mt&&Lt(p+1);)_(p+1),c.newline=!0;return r};var Rr=0,Ut=100;c.asi=(r,e,t,n,o)=>{if(!(e>=ue||Rr>=Ut)){Rr++;try{n=t(ue-.5)}finally{Rr--}if(n)return o=n?.[0]===";"?n.slice(1):[n],r?.[0]===";"?(r.push(...o),r):[";",r,...o]}};export{ur as access,y as binary,i as compile,m as cur,jr as default,R as err,a as expr,W as group,Ft as id,p as idx,g as keyword,$ as literal,Or as loc,T as lookup,pr as nary,N as next,s as operator,lr as operators,v as parens,c as parse,_r as peek,j as prec,_ as seek,h as skip,d as space,k as token,P as unary,I as word};
package/justin.min.js CHANGED
@@ -1,8 +1,8 @@
1
- var fr=r=>r>=48&&r<=57||r>=65&&r<=70||r>=97&&r<=102,Fr=(r=f+2,e,t=0,n=0)=>{if(l.charCodeAt(f)!==92||l.charCodeAt(f+1)!==117)return 0;if(l.charCodeAt(r)===123){for(;fr(e=l.charCodeAt(++r));)t=t*16+(e<=57?e-48:(e&31)+9);return r>f+3&&t<=1114111&&l.charCodeAt(r)===125?r-f+1:0}for(;n<4&&fr(l.charCodeAt(r+n));)n++;return n===4?6:0},V,f,l,d=r=>(f=0,l=r,d.newline=!1,r=A(),l[f]?N():r||""),N=(r="Unexpected token",e=f,t=l.slice(0,e).split(`
2
- `),n=t.pop(),i=l.slice(Math.max(0,e-40),e),p="\u032D",u=(l[e]||" ")+p,m=l.slice(e+1,e+20))=>{throw SyntaxError(`${r} at ${t.length+1}:${n.length+1}
3
- ${l[e-41]!==`
4
- `,""+i}${u}${m}`)},lr=(r,e=f)=>(Array.isArray(r)&&(r.loc=e),r),k=(r,e=f,t)=>{for(;t=r(l.charCodeAt(f))||r===d.id&&Fr();)f+=t;return l.slice(e,f)},h=(r=1)=>l[f+=r],B=r=>f=r,A=(r=0,e)=>{let t,n,i,p,u;for(e&&d.asi&&(d.newline=!1);(t=d.space())&&(u=d.newline,1)&&t!==e&&(i=(n&&t===91&&V&&d.asi?.(n,r,A)||null)??((p=a[t])&&p(n,r))??(n&&u&&d.asi?.(n,r,A))??(!n&&k(d.id)));)n=i;return e&&(t==e?(f++,e===125&&d.asi&&(d.newline=!0)):N("Unclosed "+String.fromCharCode(e-(e>42?2:1)))),n},R=(r,e=f)=>{for(V=!1;(r=l.charCodeAt(f))<=32;)d.asi&&r===10&&(d.newline=V=!0),f++;return r},mr=(r=f)=>{for(;l.charCodeAt(r)<=32;)r++;return l.charCodeAt(r)},_e=d.id=r=>r>=48&&r<=57||r>=65&&r<=90||r>=97&&r<=122||r==36||r==95||r>=192&&r!=215&&r!=247,G=(r,e=r.length)=>l.substr(f,e)===r&&!d.id(l.charCodeAt(f+e)),Me=()=>(h(),A(0,41)),a=[],ur={},E=(r,e=32,t,n=r.charCodeAt(0),i=r.length,p=a[n],u=r.toUpperCase()!==r,m,g)=>(e=ur[r]=!p&&ur[r]||e,a[n]=(y,w,C,S=f)=>(m=C,(C?r==C:(i<2||r.charCodeAt(1)===l.charCodeAt(f+1)&&(i<3||l.substr(f,i)==r))&&(!u||!d.id(l.charCodeAt(f+i)))&&(m=C=r))&&w<e&&(f+=i,(g=t(y))?lr(g,S):(f=S,m=0,!u&&!p&&!y&&N()),g)||p?.(y,w,m))),c=(r,e,t=!1)=>E(r,e,n=>n&&(i=>i&&[r,n,i])(A(e-(t?.5:0)))),I=(r,e,t)=>E(r,e,n=>t?n&&[r,n]:!n&&(n=A(e-.5))&&[r,n]),T=(r,e)=>E(r,200,t=>!t&&[,e]),Z=(r,e,t)=>E(r,e,(n,i)=>(i=A(e-(t?.5:0)),n?.[0]!==r&&(n=[r,n||null]),i?.[0]===r?n.push(...i.slice(1)):n.push(i||null),n)),_=(r,e)=>E(r[0],e,t=>!t&&[r,A(0,r.charCodeAt(1))||null]),q=(r,e)=>E(r[0],e,t=>t&&[r,t,A(0,r.charCodeAt(1))||null]),L=(r,e,t,n=r.charCodeAt(0),i=r.length,p=a[n],u)=>a[n]=(m,g,y,w=f)=>!m&&(y?r==y:(i<2||l.substr(f,i)==r)&&(y=r))&&g<e&&!d.id(l.charCodeAt(f+i))&&(!d.prop||d.prop(f+i))&&(B(f+i),(u=t())?lr(u,w):B(w),u)||p?.(m,g,y);Object.defineProperty(d,"space",{configurable:!0,enumerable:!0,get:()=>R,set:r=>R=r});var Y={},s=(r,e,t=Y[r])=>Y[r]=(...n)=>e(...n)||t?.(...n),o=r=>Array.isArray(r)?r[0]==null?(e=>()=>e)(r[1]):Y[r[0]]?.(...r.slice(1))??N(`Unknown operator: ${r[0]}`,r?.loc):r===void 0?()=>{}:e=>e?.[r];var $=46,M=48,H=57,Gr=69,Xr=101,$r=43,Hr=45,X=95,cr=110,Qr=97,jr=102,Kr=65,Wr=70,dr=r=>r.indexOf("_")<0?r:r.replaceAll("_",""),x=r=>{let e=dr(k(t=>t===$&&l.charCodeAt(f+1)!==$||t>=M&&t<=H||t===X||((t===Gr||t===Xr)&&((t=l.charCodeAt(f+1))>=M&&t<=H||t===$r||t===Hr)?2:0)));return l.charCodeAt(f)===cr?(h(),[,BigInt(e)]):(r=+e)!=r?N():[,r]},zr={2:r=>r===48||r===49||r===X,8:r=>r>=48&&r<=55||r===X,16:r=>r>=M&&r<=H||r>=Qr&&r<=jr||r>=Kr&&r<=Wr||r===X};d.number=null;a[$]=r=>!r&&l.charCodeAt(f+1)!==$&&x();for(let r=M;r<=H;r++)a[r]=e=>e?void 0:x();a[M]=r=>{if(r)return;let e=d.number;if(e){for(let[t,n]of Object.entries(e))if(t[0]==="0"&&l[f+1]?.toLowerCase()===t[1]){h(2);let i=dr(k(zr[n]));return l.charCodeAt(f)===cr?(h(),[,BigInt("0"+t[1]+i)]):[,parseInt(i,n)]}}return x()};var Jr=92,Ar=34,gr=39,Vr={n:`
5
- `,r:"\r",t:" ",b:"\b",f:"\f",v:"\v"},hr=r=>(e,t,n="")=>{if(!(e||!d.string?.[String.fromCharCode(r)]))return h(),k(i=>i-r&&(i===Jr?(n+=Vr[l[f+1]]||l[f+1],2):(n+=l[f],1))),l[f]===String.fromCharCode(r)?h():N("Bad string"),[,n]};a[Ar]=hr(Ar);a[gr]=hr(gr);d.string={'"':!0};var Yr=20;"= += -= *= /= %= |= &= ^= >>= <<=".split(" ").map(r=>c(r,Yr,!0));var yr=(r,e,t,n)=>typeof r=="string"?i=>e(i,r,i):r[0]==="."?(t=o(r[1]),n=r[2],i=>e(t(i),n,i)):r[0]==="[]"&&r.length===3?(t=o(r[1]),n=o(r[2]),i=>e(t(i),n(i),i)):r[0]==="()"&&r.length===2?yr(r[1],e):(()=>{throw Error("Invalid assignment target")})(),Cr={"=":(r,e,t)=>r[e]=t,"+=":(r,e,t)=>r[e]+=t,"-=":(r,e,t)=>r[e]-=t,"*=":(r,e,t)=>r[e]*=t,"/=":(r,e,t)=>r[e]/=t,"%=":(r,e,t)=>r[e]%=t,"|=":(r,e,t)=>r[e]|=t,"&=":(r,e,t)=>r[e]&=t,"^=":(r,e,t)=>r[e]^=t,">>=":(r,e,t)=>r[e]>>=t,"<<=":(r,e,t)=>r[e]<<=t};for(let r in Cr)s(r,(e,t)=>(t=o(t),yr(e,(n,i,p)=>Cr[r](n,i,t(p)))));var Zr=30,qr=40,xr=140;I("!",xr);c("||",Zr);c("&&",qr);s("!",r=>(r=o(r),e=>!r(e)));s("||",(r,e)=>(r=o(r),e=o(e),t=>r(t)||e(t)));s("&&",(r,e)=>(r=o(r),e=o(e),t=>r(t)&&e(t)));var br=50,re=60,ee=70,Sr=100,te=140;c("|",br);c("&",ee);c("^",re);c(">>",Sr);c("<<",Sr);I("~",te);s("~",r=>(r=o(r),e=>~r(e)));s("|",(r,e)=>(r=o(r),e=o(e),t=>r(t)|e(t)));s("&",(r,e)=>(r=o(r),e=o(e),t=>r(t)&e(t)));s("^",(r,e)=>(r=o(r),e=o(e),t=>r(t)^e(t)));s(">>",(r,e)=>(r=o(r),e=o(e),t=>r(t)>>e(t)));s("<<",(r,e)=>(r=o(r),e=o(e),t=>r(t)<<e(t)));var Q=90;c("<",Q);c(">",Q);c("<=",Q);c(">=",Q);s(">",(r,e)=>(r=o(r),e=o(e),t=>r(t)>e(t)));s("<",(r,e)=>(r=o(r),e=o(e),t=>r(t)<e(t)));s(">=",(r,e)=>(r=o(r),e=o(e),t=>r(t)>=e(t)));s("<=",(r,e)=>(r=o(r),e=o(e),t=>r(t)<=e(t)));var Er=80;c("==",Er);c("!=",Er);s("==",(r,e)=>(r=o(r),e=o(e),t=>r(t)==e(t)));s("!=",(r,e)=>(r=o(r),e=o(e),t=>r(t)!=e(t)));var wr=110,b=120,ar=140;c("+",wr);c("-",wr);c("*",b);c("/",b);c("%",b);I("+",ar);I("-",ar);s("+",(r,e)=>e!==void 0?(r=o(r),e=o(e),t=>r(t)+e(t)):(r=o(r),t=>+r(t)));s("-",(r,e)=>e!==void 0?(r=o(r),e=o(e),t=>r(t)-e(t)):(r=o(r),t=>-r(t)));s("*",(r,e)=>(r=o(r),e=o(e),t=>r(t)*e(t)));s("/",(r,e)=>(r=o(r),e=o(e),t=>r(t)/e(t)));s("%",(r,e)=>(r=o(r),e=o(e),t=>r(t)%e(t)));var j=150;E("++",j,r=>r?["++",r,null]:["++",A(j-1)]);E("--",j,r=>r?["--",r,null]:["--",A(j-1)]);var rr=(r,e,t,n)=>typeof r=="string"?i=>e(i,r):r[0]==="."?(t=o(r[1]),n=r[2],i=>e(t(i),n)):r[0]==="[]"&&r.length===3?(t=o(r[1]),n=o(r[2]),i=>e(t(i),n(i))):r[0]==="()"&&r.length===2?rr(r[1],e):(()=>{throw Error("Invalid increment target")})();s("++",(r,e)=>rr(r,e===null?(t,n)=>t[n]++:(t,n)=>++t[n]));s("--",(r,e)=>rr(r,e===null?(t,n)=>t[n]--:(t,n)=>--t[n]));var ne=5,oe=10;Z(",",oe);Z(";",ne,!0);var Ir=(...r)=>(r=r.map(o),e=>{let t;for(let n of r)t=n(e);return t});s(",",Ir);s(";",Ir);var ie=170;_("()",ie);var O=r=>r?.[0]==="_"&&r[1]==="_"||r==="constructor"||r==="prototype",er=170;q("[]",er);c(".",er);q("()",er);var K=r=>{throw Error(r)};s("[]",(r,e)=>e===void 0?(r=r?r[0]===","?r.slice(1):[r]:[],r=r.map(t=>t==null?(()=>{}):t[0]==="..."?(t=o(t[1]),n=>t(n)):(t=o(t),n=>[t(n)])),t=>r.flatMap(n=>n(t))):(e==null&&K("Missing index"),r=o(r),e=o(e),t=>{let n=e(t);return O(n)?void 0:r(t)[n]}));s(".",(r,e)=>(r=o(r),e=e[0]?e:e[1],O(e)?()=>{}:t=>r(t)[e]));s("()",(r,e)=>{if(e===void 0)return r==null?K("Empty ()"):o(r);let t=i=>i?.[0]===","&&i.slice(1).some(p=>p==null||t(p));t(e)&&K("Empty argument");let n=e?e[0]===","?(e=e.slice(1).map(o),i=>e.map(p=>p(i))):(e=o(e),i=>[e(i)]):()=>[];return tr(r,(i,p,u)=>i[p](...n(u)))});var v=r=>typeof r=="string"||Array.isArray(r)&&(r[0]==="."||r[0]==="?."||r[0]==="[]"&&r.length===3||r[0]==="?.[]"||r[0]==="()"&&r.length===2&&v(r[1])||r[0]==="{}"),tr=(r,e,t,n)=>r==null?K("Empty ()"):r[0]==="()"&&r.length==2?tr(r[1],e):typeof r=="string"?i=>e(i,r,i):r[0]==="."?(t=o(r[1]),n=r[2],i=>e(t(i),n,i)):r[0]==="?."?(t=o(r[1]),n=r[2],i=>{let p=t(i);return p==null?void 0:e(p,n,i)}):r[0]==="[]"&&r.length===3?(t=o(r[1]),n=o(r[2]),i=>e(t(i),n(i),i)):r[0]==="?.[]"?(t=o(r[1]),n=o(r[2]),i=>{let p=t(i);return p==null?void 0:e(p,n(i),i)}):(r=o(r),i=>e([r(i)],0,i)),P=tr;var Rr=new WeakMap,se=(r,...e)=>typeof r=="string"?o(d(r)):Rr.get(r)||Rr.set(r,pe(r,e)).get(r),Nr=57344,pe=(r,e)=>{let t=r.reduce((p,u,m)=>p+(m?String.fromCharCode(Nr+m-1):"")+u,""),n=d(t),i=p=>{if(typeof p=="string"&&p.length===1){let u=p.charCodeAt(0)-Nr,m;if(u>=0&&u<e.length)return m=e[u],fe(m)?m:[,m]}return Array.isArray(p)?p.map(i):p};return o(i(n))},fe=r=>typeof r=="string"||Array.isArray(r)&&(typeof r[0]=="string"||r[0]===void 0),ue=se;var le=32,me=d.space;d.comment??={"//":`
6
- `,"/*":"*/"};var nr;d.space=()=>{nr||(nr=Object.entries(d.comment).map(([i,p])=>[i,p,i.charCodeAt(0)]));for(var r;r=me();){for(var e=0,t;t=nr[e++];)if(r===t[2]&&l.substr(f,t[0].length)===t[0]){var n=f+t[0].length;if(t[1]===`
7
- `)for(;l.charCodeAt(n)>=le;)n++;else{for(;l[n]&&l.substr(n,t[1].length)!==t[1];)n++;l[n]&&(n+=t[1].length)}B(n),r=0;break}if(r)return r}return r};var kr=80;c("===",kr);c("!==",kr);s("===",(r,e)=>(r=o(r),e=o(e),t=>r(t)===e(t)));s("!==",(r,e)=>(r=o(r),e=o(e),t=>r(t)!==e(t)));var ce=30;c("??",ce);s("??",(r,e)=>(r=o(r),e=o(e),t=>r(t)??e(t)));var de=130,Ae=20;c("**",de,!0);c("**=",Ae,!0);s("**",(r,e)=>(r=o(r),e=o(e),t=>r(t)**e(t)));var ge=r=>{throw Error(r)};s("**=",(r,e)=>(v(r)||ge("Invalid assignment target"),e=o(e),P(r,(t,n,i)=>t[n]**=e(i))));var vr=90;c("in",vr);c("of",vr);s("in",(r,e)=>(r=o(r),e=o(e),t=>r(t)in e(t)));var he=20,Ce=100,ye=r=>{throw Error(r)};c(">>>",Ce);c(">>>=",he,!0);s(">>>",(r,e)=>(r=o(r),e=o(e),t=>r(t)>>>e(t)));s(">>>=",(r,e)=>(v(r)||ye("Invalid assignment target"),e=o(e),P(r,(t,n,i)=>t[n]>>>=e(i))));var or=5,Se=10,Ee=20,we=r=>r[0]?.[0]===","?r[0].slice(1):r,D=(r,e,t)=>{if(typeof r=="string"){t[r]=e;return}let[n,...i]=r,p=we(i);if(n==="{}"){let u=[];for(let m of p){if(Array.isArray(m)&&m[0]==="..."){let S={};for(let U in e)u.includes(U)||(S[U]=e[U]);t[m[1]]=S;break}let g,y,w;typeof m=="string"?g=y=m:m[0]==="="?(typeof m[1]=="string"?g=y=m[1]:[,g,y]=m[1],w=m[2]):[,g,y]=m,u.push(g);let C=e[g];C===void 0&&w&&(C=o(w)(t)),D(y,C,t)}}else if(n==="[]"){let u=0;for(let m of p){if(m===null){u++;continue}if(Array.isArray(m)&&m[0]==="..."){t[m[1]]=e.slice(u);break}let g=m,y;Array.isArray(m)&&m[0]==="="&&([,g,y]=m);let w=e[u++];w===void 0&&y&&(w=o(y)(t)),D(g,w,t)}}},Or=r=>{if(r==="let"){let t=f;if(R(),G("in")){B(t);return}B(t)}let e=A(Se-1);return e?.[0]==="in"||e?.[0]==="of"?[e[0],[r,e[1]],e[2]]:e?.[0]===","?[r,...e.slice(1)]:[r,e]};L("let",or+1,()=>Or("let"));L("const",or+1,()=>Or("const"));L("var",or,()=>(R(),["var",A(Ee)]));var Pr=(...r)=>(r=r.map(e=>{if(typeof e=="string")return t=>{t[e]=void 0};if(e[0]==="="){let[,t,n]=e,i=o(n);return typeof t=="string"?p=>{p[t]=i(p)}:p=>D(t,i(p),p)}return o(e)}),e=>{for(let t of r)t(e)});s("let",Pr);s("const",Pr);s("var",r=>typeof r=="string"?e=>{e[r]=void 0}:()=>{});var ir=20,W=r=>{throw Error(r)};c("||=",ir,!0);c("&&=",ir,!0);c("??=",ir,!0);s("=",(r,e)=>{if(Array.isArray(r)&&(r[0]==="let"||r[0]==="const"||r[0]==="var")){let t=r[1];return e=o(e),typeof t=="string"?n=>{n[t]=e(n)}:n=>D(t,e(n),n)}return v(r)||W("Invalid assignment target"),e=o(e),P(r,(t,n,i)=>t[n]=e(i))});s("||=",(r,e)=>(v(r)||W("Invalid assignment target"),e=o(e),P(r,(t,n,i)=>t[n]||=e(i))));s("&&=",(r,e)=>(v(r)||W("Invalid assignment target"),e=o(e),P(r,(t,n,i)=>t[n]&&=e(i))));s("??=",(r,e)=>(v(r)||W("Invalid assignment target"),e=o(e),P(r,(t,n,i)=>t[n]??=e(i))));T("true",!0);T("false",!1);T("null",null);L("undefined",200,()=>[]);T("NaN",NaN);T("Infinity",1/0);var sr=20;E("?",sr,(r,e,t)=>r&&(e=A(sr-1))&&k(n=>n===58)&&(t=A(sr-1),["?",r,e,t]));s("?",(r,e,t)=>(r=o(r),e=o(e),t=o(t),n=>r(n)?e(n):t(n)));var ae=[],Ie=20;c("=>",Ie,!0);s("=>",(r,e)=>{r=r?.[0]==="()"?r[1]:r;let t=r?r[0]===","?r.slice(1):[r]:[],n=-1,i=null,p=t[t.length-1];Array.isArray(p)&&p[0]==="..."&&(n=t.length-1,i=p[1],t.length--);let u=e?.[0]==="{}";return e=o(u?["{",e[1]]:e),m=>(...g)=>{let y={};t.forEach((C,S)=>y[C]=g[S]),i&&(y[i]=g.slice(n));let w=new Proxy(y,{get:(C,S)=>S in C?C[S]:m?.[S],set:(C,S,U)=>((S in C?C:m)[S]=U,!0),has:(C,S)=>S in C||(m?S in m:!1)});try{let C=e(w);return u?void 0:C}catch(C){if(C===ae)return C[0];throw C}}});var Re=140;I("...",Re);s("...",r=>(r=o(r),e=>Object.entries(r(e))));var Lr=170;E("?.",Lr,(r,e)=>{if(!r)return;let t=R();return t===40?(h(),["?.()",r,A(0,41)||null]):t===91?(h(),["?.[]",r,A(0,93)]):(e=A(Lr),e?["?.",r,e]:void 0)});s("?.",(r,e)=>(r=o(r),O(e)?()=>{}:t=>r(t)?.[e]));s("?.[]",(r,e)=>(r=o(r),e=o(e),t=>{let n=e(t);return O(n)?void 0:r(t)?.[n]}));s("?.()",(r,e)=>{let t=e?e[0]===","?(e=e.slice(1).map(o),i=>e.map(p=>p(i))):(e=o(e),i=>[e(i)]):()=>[];if(r[0]==="?."){let i=o(r[1]),p=r[2];return O(p)?()=>{}:u=>i(u)?.[p]?.(...t(u))}if(r[0]==="?.[]"){let i=o(r[1]),p=o(r[2]);return u=>{let m=i(u),g=p(u);return O(g)?void 0:m?.[g]?.(...t(u))}}if(r[0]==="."){let i=o(r[1]),p=r[2];return O(p)?()=>{}:u=>i(u)?.[p]?.(...t(u))}if(r[0]==="[]"&&r.length===3){let i=o(r[1]),p=o(r[2]);return u=>{let m=i(u),g=p(u);return O(g)?void 0:m?.[g]?.(...t(u))}}let n=o(r);return i=>n(i)?.(...t(i))});var F=140;I("typeof",F);I("void",F);I("delete",F);L("new",F,()=>G(".target")?(h(7),["new.target"]):["new",A(F)]);s("typeof",r=>(r=o(r),e=>typeof r(e)));s("void",r=>(r=o(r),e=>(r(e),void 0)));s("delete",r=>{if(r[0]==="."){let e=o(r[1]),t=r[2];return n=>delete e(n)[t]}if(r[0]==="[]"){let e=o(r[1]),t=o(r[2]);return n=>delete e(n)[t(n)]}return()=>!0});s("new",r=>{let e=o(r?.[0]==="()"?r[1]:r),t=r?.[0]==="()"?r[2]:null,n=t?t[0]===","?(i=>p=>i.map(u=>u(p)))(t.slice(1).map(o)):(i=>p=>[i(p)])(o(t)):()=>[];return i=>new(e(i))(...n(i))});var z=Symbol("accessor"),pr=20,Ne=40,Br=41,Tr=123,Ur=125,_r=r=>e=>{if(e)return;R();let t=k(d.id);if(!t||(R(),l.charCodeAt(f)!==Ne))return!1;h();let n=A(0,Br);return R(),l.charCodeAt(f)!==Tr?!1:(h(),[r,t,n,A(0,Ur)])};E("get",pr-1,_r("get"));E("set",pr-1,_r("set"));E("(",pr-1,r=>{if(!r||typeof r!="string")return;let e=A(0,Br)||null;if(R(),l.charCodeAt(f)===Tr)return h(),[":",r,["=>",["()",e],A(0,Ur)||null]]});s("get",(r,e)=>(e=e?o(e):()=>{},t=>[[z,r,{get:function(){let n=Object.create(t||{});return n.this=this,e(n)}}]]));s("set",(r,e,t)=>(t=t?o(t):()=>{},n=>[[z,r,{set:function(i){let p=Object.create(n||{});p.this=this,p[e]=i,t(p)}}]]));var ke=20,Mr=200;d.prop=r=>mr(r)!==58;var ve=r=>r==null||typeof r=="string"||[":",",","...","get","set"].includes(r[0]);_("[]",Mr);_("{}",Mr);c(":",ke-1,!0);s("{}",(r,e)=>{if(e!==void 0)return;if(!ve(r))return o(["{",r]);r=r?r[0]!==","?[r]:r.slice(1):[];let t=r.map(n=>o(typeof n=="string"?[":",n,n]:n));return n=>{let i={},p={};for(let u of t.flatMap(m=>m(n)))if(u[0]===z){let[,m,g]=u;p[m]={...p[m],...g,configurable:!0,enumerable:!0}}else i[u[0]]=u[1];for(let u in p)Object.defineProperty(i,u,p[u]);return i}});s("{",r=>(r=r?o(r):()=>{},e=>r(Object.create(e))));s(":",(r,e)=>(e=o(e),Array.isArray(r)?(r=o(r),t=>[[r(t),e(t)]]):t=>[[r,e(t)]]));var Oe=170,J=96,Pe=36,Le=123,Be=92,Te={n:`
8
- `,r:"\r",t:" ",b:"\b",f:"\f",v:"\v"},Dr=()=>{let r=[];for(let e="",t;(t=l.charCodeAt(f))!==J;)t?t===Be?(h(),e+=Te[l[f]]||l[f],h()):t===Pe&&l.charCodeAt(f+1)===Le?(e&&r.push([,e]),e="",h(2),r.push(A(0,125))):(e+=l[f],h(),t=l.charCodeAt(f),t===J&&e&&r.push([,e])):N("Unterminated template");return h(),r},Ue=a[J];a[J]=(r,e)=>r&&e<Oe?d.asi&&d.newline?void 0:(h(),["``",r,...Dr()]):r?Ue?.(r,e):(h(),(t=>t.length<2&&t[0]?.[0]===void 0?t[0]||[,""]:["`",...t])(Dr()));s("`",(...r)=>(r=r.map(o),e=>r.map(t=>t(e)).join("")));s("``",(r,...e)=>{r=o(r);let t=[],n=[];for(let p of e)Array.isArray(p)&&p[0]===void 0?t.push(p[1]):n.push(o(p));let i=Object.assign([...t],{raw:t});return p=>r(p)(i,...n.map(u=>u(p)))});d.string["'"]=!0;d.number={"0x":16,"0b":2,"0o":8};export{q as access,c as binary,o as compile,l as cur,ue as default,N as err,A as expr,_ as group,_e as id,f as idx,L as keyword,T as literal,lr as loc,a as lookup,Z as nary,k as next,s as operator,Y as operators,Me as parens,d as parse,mr as peek,ur as prec,B as seek,h as skip,R as space,E as token,I as unary,G as word};
1
+ var V,f,m,d=r=>(f=0,m=r,d.newline=!1,r=A(),m[f]?k():r||""),k=(r="Unexpected token",e=f,t=m.slice(0,e).split(`
2
+ `),n=t.pop(),i=m.slice(Math.max(0,e-40),e),p="\u032D",l=(m[e]||" ")+p,u=m.slice(e+1,e+20))=>{throw SyntaxError(`${r} at ${t.length+1}:${n.length+1}
3
+ ${m[e-41]!==`
4
+ `,""+i}${l}${u}`)},lr=(r,e=f)=>(Array.isArray(r)&&(r.loc=e),r),v=(r,e=f,t)=>{for(;t=r(m.charCodeAt(f));)f+=t;return m.slice(e,f)},h=(r=1)=>m[f+=r],L=r=>f=r,A=(r=0,e)=>{let t,n,i,p,l;for(e&&d.asi&&(d.newline=!1);(t=d.space())&&(l=d.newline,1)&&t!==e&&(i=(n&&t===91&&V&&d.asi?.(n,r,A)||null)??((p=I[t])&&p(n,r))??(n&&l&&d.asi?.(n,r,A))??(!n&&v(d.id)));)n=i;return e&&(t==e?(f++,e===125&&d.asi&&(d.newline=!0)):k("Unclosed "+String.fromCharCode(e-(e>42?2:1)))),n},N=(r,e=f)=>{for(V=!1;(r=m.charCodeAt(f))<=32;)d.asi&&r===10&&(d.newline=V=!0),f++;return r},ur=(r=f)=>{for(;m.charCodeAt(r)<=32;)r++;return m.charCodeAt(r)},_e=d.id=r=>r>=48&&r<=57||r>=65&&r<=90||r>=97&&r<=122||r==36||r==95||r>=192&&r!=215&&r!=247,G=(r,e=r.length)=>m.substr(f,e)===r&&!d.id(m.charCodeAt(f+e)),Ue=()=>(h(),A(0,41)),I=[],fr={},E=(r,e=32,t,n=r.charCodeAt(0),i=r.length,p=I[n],l=r.toUpperCase()!==r,u,g)=>(e=fr[r]=!p&&fr[r]||e,I[n]=(C,w,y,S=f)=>(u=y,(y?r==y:(i<2||r.charCodeAt(1)===m.charCodeAt(f+1)&&(i<3||m.substr(f,i)==r))&&(!l||!d.id(m.charCodeAt(f+i)))&&(u=y=r))&&w<e&&(f+=i,(g=t(C))?lr(g,S):(f=S,u=0,!l&&!p&&!C&&k()),g)||p?.(C,w,u))),c=(r,e,t=!1)=>E(r,e,n=>n&&(i=>i&&[r,n,i])(A(e-(t?.5:0)))),a=(r,e,t)=>E(r,e,n=>t?n&&[r,n]:!n&&(n=A(e-.5))&&[r,n]),_=(r,e)=>E(r,200,t=>!t&&[,e]),Z=(r,e,t)=>E(r,e,(n,i)=>(i=A(e-(t?.5:0)),n?.[0]!==r&&(n=[r,n||null]),i?.[0]===r?n.push(...i.slice(1)):n.push(i||null),n)),B=(r,e)=>E(r[0],e,t=>!t&&[r,A(0,r.charCodeAt(1))||null]),q=(r,e)=>E(r[0],e,t=>t&&[r,t,A(0,r.charCodeAt(1))||null]),T=(r,e,t,n=r.charCodeAt(0),i=r.length,p=I[n],l)=>I[n]=(u,g,C,w=f)=>!u&&(C?r==C:(i<2||m.substr(f,i)==r)&&(C=r))&&g<e&&!d.id(m.charCodeAt(f+i))&&(!d.prop||d.prop(f+i))&&(L(f+i),(l=t())?lr(l,w):L(w),l)||p?.(u,g,C);Object.defineProperty(d,"space",{configurable:!0,enumerable:!0,get:()=>N,set:r=>N=r});var Y={},s=(r,e,t=Y[r])=>Y[r]=(...n)=>e(...n)||t?.(...n),o=r=>Array.isArray(r)?r[0]==null?(e=>()=>e)(r[1]):Y[r[0]]?.(...r.slice(1))??k(`Unknown operator: ${r[0]}`,r?.loc):r===void 0?()=>{}:e=>e?.[r];var $=46,M=48,Q=57,Dr=69,Fr=101,Gr=43,Xr=45,X=95,mr=110,$r=97,Qr=102,jr=65,Hr=70,cr=r=>r.indexOf("_")<0?r:r.replaceAll("_",""),x=r=>{let e=cr(v(t=>t===$&&m.charCodeAt(f+1)!==$||t>=M&&t<=Q||t===X||((t===Dr||t===Fr)&&((t=m.charCodeAt(f+1))>=M&&t<=Q||t===Gr||t===Xr)?2:0)));return m.charCodeAt(f)===mr?(h(),[,BigInt(e)]):(r=+e)!=r?k():[,r]},Kr={2:r=>r===48||r===49||r===X,8:r=>r>=48&&r<=55||r===X,16:r=>r>=M&&r<=Q||r>=$r&&r<=Qr||r>=jr&&r<=Hr||r===X};d.number=null;I[$]=r=>!r&&m.charCodeAt(f+1)!==$&&x();for(let r=M;r<=Q;r++)I[r]=e=>e?void 0:x();I[M]=r=>{if(r)return;let e=d.number;if(e){for(let[t,n]of Object.entries(e))if(t[0]==="0"&&m[f+1]?.toLowerCase()===t[1]){h(2);let i=cr(v(Kr[n]));return m.charCodeAt(f)===mr?(h(),[,BigInt("0"+t[1]+i)]):[,parseInt(i,n)]}}return x()};var Wr=92,dr=34,Ar=39,zr={n:`
5
+ `,r:"\r",t:" ",b:"\b",f:"\f",v:"\v"},gr=r=>(e,t,n="")=>{if(!(e||!d.string?.[String.fromCharCode(r)]))return h(),v(i=>i-r&&(i===Wr?(n+=zr[m[f+1]]||m[f+1],2):(n+=m[f],1))),m[f]===String.fromCharCode(r)?h():k("Bad string"),[,n]};I[dr]=gr(dr);I[Ar]=gr(Ar);d.string={'"':!0};var Jr=20;"= += -= *= /= %= |= &= ^= >>= <<=".split(" ").map(r=>c(r,Jr,!0));var yr=(r,e,t,n)=>typeof r=="string"?i=>e(i,r,i):r[0]==="."?(t=o(r[1]),n=r[2],i=>e(t(i),n,i)):r[0]==="[]"&&r.length===3?(t=o(r[1]),n=o(r[2]),i=>e(t(i),n(i),i)):r[0]==="()"&&r.length===2?yr(r[1],e):(()=>{throw Error("Invalid assignment target")})(),hr={"=":(r,e,t)=>r[e]=t,"+=":(r,e,t)=>r[e]+=t,"-=":(r,e,t)=>r[e]-=t,"*=":(r,e,t)=>r[e]*=t,"/=":(r,e,t)=>r[e]/=t,"%=":(r,e,t)=>r[e]%=t,"|=":(r,e,t)=>r[e]|=t,"&=":(r,e,t)=>r[e]&=t,"^=":(r,e,t)=>r[e]^=t,">>=":(r,e,t)=>r[e]>>=t,"<<=":(r,e,t)=>r[e]<<=t};for(let r in hr)s(r,(e,t)=>(t=o(t),yr(e,(n,i,p)=>hr[r](n,i,t(p)))));var Vr=30,Yr=40,Zr=140;a("!",Zr);c("||",Vr);c("&&",Yr);s("!",r=>(r=o(r),e=>!r(e)));s("||",(r,e)=>(r=o(r),e=o(e),t=>r(t)||e(t)));s("&&",(r,e)=>(r=o(r),e=o(e),t=>r(t)&&e(t)));var qr=50,xr=60,br=70,Cr=100,re=140;c("|",qr);c("&",br);c("^",xr);c(">>",Cr);c("<<",Cr);a("~",re);s("~",r=>(r=o(r),e=>~r(e)));s("|",(r,e)=>(r=o(r),e=o(e),t=>r(t)|e(t)));s("&",(r,e)=>(r=o(r),e=o(e),t=>r(t)&e(t)));s("^",(r,e)=>(r=o(r),e=o(e),t=>r(t)^e(t)));s(">>",(r,e)=>(r=o(r),e=o(e),t=>r(t)>>e(t)));s("<<",(r,e)=>(r=o(r),e=o(e),t=>r(t)<<e(t)));var j=90;c("<",j);c(">",j);c("<=",j);c(">=",j);s(">",(r,e)=>(r=o(r),e=o(e),t=>r(t)>e(t)));s("<",(r,e)=>(r=o(r),e=o(e),t=>r(t)<e(t)));s(">=",(r,e)=>(r=o(r),e=o(e),t=>r(t)>=e(t)));s("<=",(r,e)=>(r=o(r),e=o(e),t=>r(t)<=e(t)));var Sr=80;c("==",Sr);c("!=",Sr);s("==",(r,e)=>(r=o(r),e=o(e),t=>r(t)==e(t)));s("!=",(r,e)=>(r=o(r),e=o(e),t=>r(t)!=e(t)));var Er=110,b=120,wr=140;c("+",Er);c("-",Er);c("*",b);c("/",b);c("%",b);a("+",wr);a("-",wr);s("+",(r,e)=>e!==void 0?(r=o(r),e=o(e),t=>r(t)+e(t)):(r=o(r),t=>+r(t)));s("-",(r,e)=>e!==void 0?(r=o(r),e=o(e),t=>r(t)-e(t)):(r=o(r),t=>-r(t)));s("*",(r,e)=>(r=o(r),e=o(e),t=>r(t)*e(t)));s("/",(r,e)=>(r=o(r),e=o(e),t=>r(t)/e(t)));s("%",(r,e)=>(r=o(r),e=o(e),t=>r(t)%e(t)));var H=150;E("++",H,r=>r?["++",r,null]:["++",A(H-1)]);E("--",H,r=>r?["--",r,null]:["--",A(H-1)]);var rr=(r,e,t,n)=>typeof r=="string"?i=>e(i,r):r[0]==="."?(t=o(r[1]),n=r[2],i=>e(t(i),n)):r[0]==="[]"&&r.length===3?(t=o(r[1]),n=o(r[2]),i=>e(t(i),n(i))):r[0]==="()"&&r.length===2?rr(r[1],e):(()=>{throw Error("Invalid increment target")})();s("++",(r,e)=>rr(r,e===null?(t,n)=>t[n]++:(t,n)=>++t[n]));s("--",(r,e)=>rr(r,e===null?(t,n)=>t[n]--:(t,n)=>--t[n]));var ee=5,te=10;Z(",",te);Z(";",ee,!0);var Ir=(...r)=>(r=r.map(o),e=>{let t;for(let n of r)t=n(e);return t});s(",",Ir);s(";",Ir);var ne=170;B("()",ne);var P=r=>r?.[0]==="_"&&r[1]==="_"||r==="constructor"||r==="prototype",er=170;q("[]",er);c(".",er);q("()",er);var K=r=>{throw Error(r)};s("[]",(r,e)=>e===void 0?(r=r?r[0]===","?r.slice(1):[r]:[],r=r.map(t=>t==null?(()=>{}):t[0]==="..."?(t=o(t[1]),n=>t(n)):(t=o(t),n=>[t(n)])),t=>r.flatMap(n=>n(t))):(e==null&&K("Missing index"),r=o(r),e=o(e),t=>{let n=e(t);return P(n)?void 0:r(t)[n]}));s(".",(r,e)=>(r=o(r),e=e[0]?e:e[1],P(e)?()=>{}:t=>r(t)[e]));s("()",(r,e)=>{if(e===void 0)return r==null?K("Empty ()"):o(r);let t=i=>i?.[0]===","&&i.slice(1).some(p=>p==null||t(p));t(e)&&K("Empty argument");let n=e?e[0]===","?(e=e.slice(1).map(o),i=>e.map(p=>p(i))):(e=o(e),i=>[e(i)]):()=>[];return tr(r,(i,p,l)=>i[p](...n(l)))});var O=r=>typeof r=="string"||Array.isArray(r)&&(r[0]==="."||r[0]==="?."||r[0]==="[]"&&r.length===3||r[0]==="?.[]"||r[0]==="()"&&r.length===2&&O(r[1])||r[0]==="{}"),tr=(r,e,t,n)=>r==null?K("Empty ()"):r[0]==="()"&&r.length==2?tr(r[1],e):typeof r=="string"?i=>e(i,r,i):r[0]==="."?(t=o(r[1]),n=r[2],i=>e(t(i),n,i)):r[0]==="?."?(t=o(r[1]),n=r[2],i=>{let p=t(i);return p==null?void 0:e(p,n,i)}):r[0]==="[]"&&r.length===3?(t=o(r[1]),n=o(r[2]),i=>e(t(i),n(i),i)):r[0]==="?.[]"?(t=o(r[1]),n=o(r[2]),i=>{let p=t(i);return p==null?void 0:e(p,n(i),i)}):(r=o(r),i=>e([r(i)],0,i)),R=tr;var ar=new WeakMap,oe=(r,...e)=>typeof r=="string"?o(d(r)):ar.get(r)||ar.set(r,ie(r,e)).get(r),Nr=57344,ie=(r,e)=>{let t=r.reduce((p,l,u)=>p+(u?String.fromCharCode(Nr+u-1):"")+l,""),n=d(t),i=p=>{if(typeof p=="string"&&p.length===1){let l=p.charCodeAt(0)-Nr,u;if(l>=0&&l<e.length)return u=e[l],se(u)?u:[,u]}return Array.isArray(p)?p.map(i):p};return o(i(n))},se=r=>typeof r=="string"||Array.isArray(r)&&(typeof r[0]=="string"||r[0]===void 0),pe=oe;var fe=32,le=d.space;d.comment??={"//":`
6
+ `,"/*":"*/"};var nr;d.space=()=>{nr||(nr=Object.entries(d.comment).map(([i,p])=>[i,p,i.charCodeAt(0)]));for(var r;r=le();){for(var e=0,t;t=nr[e++];)if(r===t[2]&&m.substr(f,t[0].length)===t[0]){var n=f+t[0].length;if(t[1]===`
7
+ `)for(;m.charCodeAt(n)>=fe;)n++;else{for(;m[n]&&m.substr(n,t[1].length)!==t[1];)n++;m[n]&&(n+=t[1].length)}L(n),r=0;break}if(r)return r}return r};var kr=80;c("===",kr);c("!==",kr);s("===",(r,e)=>(r=o(r),e=o(e),t=>r(t)===e(t)));s("!==",(r,e)=>(r=o(r),e=o(e),t=>r(t)!==e(t)));var ue=30;c("??",ue);s("??",(r,e)=>(r=o(r),e=o(e),t=>r(t)??e(t)));var me=130,ce=20;c("**",me,!0);c("**=",ce,!0);s("**",(r,e)=>(r=o(r),e=o(e),t=>r(t)**e(t)));var de=r=>{throw Error(r)};s("**=",(r,e)=>(O(r)||de("Invalid assignment target"),e=o(e),R(r,(t,n,i)=>t[n]**=e(i))));var vr=90;c("in",vr);c("of",vr);s("in",(r,e)=>(r=o(r),e=o(e),t=>r(t)in e(t)));var Ae=20,ge=100,he=r=>{throw Error(r)};c(">>>",ge);c(">>>=",Ae,!0);s(">>>",(r,e)=>(r=o(r),e=o(e),t=>r(t)>>>e(t)));s(">>>=",(r,e)=>(O(r)||he("Invalid assignment target"),e=o(e),R(r,(t,n,i)=>t[n]>>>=e(i))));var or=5,ye=10,Ce=20,Se=r=>r[0]?.[0]===","?r[0].slice(1):r,D=(r,e,t)=>{if(typeof r=="string"){t[r]=e;return}let[n,...i]=r,p=Se(i);if(n==="{}"){let l=[];for(let u of p){if(Array.isArray(u)&&u[0]==="..."){let S={};for(let U in e)l.includes(U)||(S[U]=e[U]);t[u[1]]=S;break}let g,C,w;typeof u=="string"?g=C=u:u[0]==="="?(typeof u[1]=="string"?g=C=u[1]:[,g,C]=u[1],w=u[2]):[,g,C]=u,l.push(g);let y=e[g];y===void 0&&w&&(y=o(w)(t)),D(C,y,t)}}else if(n==="[]"){let l=0;for(let u of p){if(u===null){l++;continue}if(Array.isArray(u)&&u[0]==="..."){t[u[1]]=e.slice(l);break}let g=u,C;Array.isArray(u)&&u[0]==="="&&([,g,C]=u);let w=e[l++];w===void 0&&C&&(w=o(C)(t)),D(g,w,t)}}},Or=r=>{if(r==="let"){let t=f;if(N(),G("in")){L(t);return}L(t)}let e=A(ye-1);return e?.[0]==="in"||e?.[0]==="of"?[e[0],[r,e[1]],e[2]]:e?.[0]===","?[r,...e.slice(1)]:[r,e]};T("let",or+1,()=>Or("let"));T("const",or+1,()=>Or("const"));T("var",or,()=>(N(),["var",A(Ce)]));var Pr=(...r)=>(r=r.map(e=>{if(typeof e=="string")return t=>{t[e]=void 0};if(e[0]==="="){let[,t,n]=e,i=o(n);return typeof t=="string"?p=>{p[t]=i(p)}:p=>D(t,i(p),p)}return o(e)}),e=>{for(let t of r)t(e)});s("let",Pr);s("const",Pr);s("var",r=>typeof r=="string"?e=>{e[r]=void 0}:()=>{});var ir=20,W=r=>{throw Error(r)};c("||=",ir,!0);c("&&=",ir,!0);c("??=",ir,!0);s("=",(r,e)=>{if(Array.isArray(r)&&(r[0]==="let"||r[0]==="const"||r[0]==="var")){let t=r[1];return e=o(e),typeof t=="string"?n=>{n[t]=e(n)}:n=>D(t,e(n),n)}return O(r)||W("Invalid assignment target"),e=o(e),R(r,(t,n,i)=>t[n]=e(i))});s("||=",(r,e)=>(O(r)||W("Invalid assignment target"),e=o(e),R(r,(t,n,i)=>t[n]||=e(i))));s("&&=",(r,e)=>(O(r)||W("Invalid assignment target"),e=o(e),R(r,(t,n,i)=>t[n]&&=e(i))));s("??=",(r,e)=>(O(r)||W("Invalid assignment target"),e=o(e),R(r,(t,n,i)=>t[n]??=e(i))));_("true",!0);_("false",!1);_("null",null);T("undefined",200,()=>[]);_("NaN",NaN);_("Infinity",1/0);var sr=20;E("?",sr,(r,e,t)=>r&&(e=A(sr-1))&&v(n=>n===58)&&(t=A(sr-1),["?",r,e,t]));s("?",(r,e,t)=>(r=o(r),e=o(e),t=o(t),n=>r(n)?e(n):t(n)));var Ee=[],we=20;c("=>",we,!0);s("=>",(r,e)=>{r=r?.[0]==="()"?r[1]:r;let t=r?r[0]===","?r.slice(1):[r]:[],n=-1,i=null,p=t[t.length-1];Array.isArray(p)&&p[0]==="..."&&(n=t.length-1,i=p[1],t.length--);let l=e?.[0]==="{}";return e=o(l?["{",e[1]]:e),u=>(...g)=>{let C={};t.forEach((y,S)=>C[y]=g[S]),i&&(C[i]=g.slice(n));let w=new Proxy(C,{get:(y,S)=>S in y?y[S]:u?.[S],set:(y,S,U)=>((S in y?y:u)[S]=U,!0),has:(y,S)=>S in y||(u?S in u:!1)});try{let y=e(w);return l?void 0:y}catch(y){if(y===Ee)return y[0];throw y}}});var Ie=140;a("...",Ie);s("...",r=>(r=o(r),e=>Object.entries(r(e))));var Rr=170;E("?.",Rr,(r,e)=>{if(!r)return;let t=N();return t===40?(h(),["?.()",r,A(0,41)||null]):t===91?(h(),["?.[]",r,A(0,93)]):(e=A(Rr),e?["?.",r,e]:void 0)});s("?.",(r,e)=>(r=o(r),P(e)?()=>{}:t=>r(t)?.[e]));s("?.[]",(r,e)=>(r=o(r),e=o(e),t=>{let n=e(t);return P(n)?void 0:r(t)?.[n]}));s("?.()",(r,e)=>{let t=e?e[0]===","?(e=e.slice(1).map(o),i=>e.map(p=>p(i))):(e=o(e),i=>[e(i)]):()=>[];if(r[0]==="?."){let i=o(r[1]),p=r[2];return P(p)?()=>{}:l=>i(l)?.[p]?.(...t(l))}if(r[0]==="?.[]"){let i=o(r[1]),p=o(r[2]);return l=>{let u=i(l),g=p(l);return P(g)?void 0:u?.[g]?.(...t(l))}}if(r[0]==="."){let i=o(r[1]),p=r[2];return P(p)?()=>{}:l=>i(l)?.[p]?.(...t(l))}if(r[0]==="[]"&&r.length===3){let i=o(r[1]),p=o(r[2]);return l=>{let u=i(l),g=p(l);return P(g)?void 0:u?.[g]?.(...t(l))}}let n=o(r);return i=>n(i)?.(...t(i))});var F=140;a("typeof",F);a("void",F);a("delete",F);T("new",F,()=>G(".target")?(h(7),["new.target"]):["new",A(F)]);s("typeof",r=>(r=o(r),e=>typeof r(e)));s("void",r=>(r=o(r),e=>(r(e),void 0)));s("delete",r=>{if(r[0]==="."){let e=o(r[1]),t=r[2];return n=>delete e(n)[t]}if(r[0]==="[]"){let e=o(r[1]),t=o(r[2]);return n=>delete e(n)[t(n)]}return()=>!0});s("new",r=>{let e=o(r?.[0]==="()"?r[1]:r),t=r?.[0]==="()"?r[2]:null,n=t?t[0]===","?(i=>p=>i.map(l=>l(p)))(t.slice(1).map(o)):(i=>p=>[i(p)])(o(t)):()=>[];return i=>new(e(i))(...n(i))});var z=Symbol("accessor"),pr=20,ae=40,Tr=41,Lr=123,_r=125,Ur=r=>e=>{if(e)return;N();let t=v(d.id);if(!t||(N(),m.charCodeAt(f)!==ae))return!1;h();let n=A(0,Tr);return N(),m.charCodeAt(f)!==Lr?!1:(h(),[r,t,n,A(0,_r)])};E("get",pr-1,Ur("get"));E("set",pr-1,Ur("set"));E("(",pr-1,r=>{if(!r||typeof r!="string")return;let e=A(0,Tr)||null;if(N(),m.charCodeAt(f)===Lr)return h(),[":",r,["=>",["()",e],A(0,_r)||null]]});s("get",(r,e)=>(e=e?o(e):()=>{},t=>[[z,r,{get:function(){let n=Object.create(t||{});return n.this=this,e(n)}}]]));s("set",(r,e,t)=>(t=t?o(t):()=>{},n=>[[z,r,{set:function(i){let p=Object.create(n||{});p.this=this,p[e]=i,t(p)}}]]));var Ne=20,Br=200;d.prop=r=>ur(r)!==58;var ke=r=>r==null||typeof r=="string"||[":",",","...","get","set"].includes(r[0]);B("[]",Br);B("{}",Br);c(":",Ne-1,!0);s("{}",(r,e)=>{if(e!==void 0)return;if(!ke(r))return o(["{",r]);r=r?r[0]!==","?[r]:r.slice(1):[];let t=r.map(n=>o(typeof n=="string"?[":",n,n]:n));return n=>{let i={},p={};for(let l of t.flatMap(u=>u(n)))if(l[0]===z){let[,u,g]=l;p[u]={...p[u],...g,configurable:!0,enumerable:!0}}else i[l[0]]=l[1];for(let l in p)Object.defineProperty(i,l,p[l]);return i}});s("{",r=>(r=r?o(r):()=>{},e=>r(Object.create(e))));s(":",(r,e)=>(e=o(e),Array.isArray(r)?(r=o(r),t=>[[r(t),e(t)]]):t=>[[r,e(t)]]));var ve=170,J=96,Oe=36,Pe=123,Re=92,Te={n:`
8
+ `,r:"\r",t:" ",b:"\b",f:"\f",v:"\v"},Mr=()=>{let r=[];for(let e="",t;(t=m.charCodeAt(f))!==J;)t?t===Re?(h(),e+=Te[m[f]]||m[f],h()):t===Oe&&m.charCodeAt(f+1)===Pe?(e&&r.push([,e]),e="",h(2),r.push(A(0,125))):(e+=m[f],h(),t=m.charCodeAt(f),t===J&&e&&r.push([,e])):k("Unterminated template");return h(),r},Le=I[J];I[J]=(r,e)=>r&&e<ve?d.asi&&d.newline?void 0:(h(),["``",r,...Mr()]):r?Le?.(r,e):(h(),(t=>t.length<2&&t[0]?.[0]===void 0?t[0]||[,""]:["`",...t])(Mr()));s("`",(...r)=>(r=r.map(o),e=>r.map(t=>t(e)).join("")));s("``",(r,...e)=>{r=o(r);let t=[],n=[];for(let p of e)Array.isArray(p)&&p[0]===void 0?t.push(p[1]):n.push(o(p));let i=Object.assign([...t],{raw:t});return p=>r(p)(i,...n.map(l=>l(p)))});d.string["'"]=!0;d.number={"0x":16,"0b":2,"0o":8};export{q as access,c as binary,o as compile,m as cur,pe as default,k as err,A as expr,B as group,_e as id,f as idx,T as keyword,_ as literal,lr as loc,I as lookup,Z as nary,v as next,s as operator,Y as operators,Ue as parens,d as parse,ur as peek,fr as prec,L as seek,h as skip,N as space,E as token,a as unary,G as word};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "subscript",
3
- "version": "10.3.4",
3
+ "version": "10.3.5",
4
4
  "description": "Modular expression parser & evaluator",
5
5
  "main": "subscript.js",
6
6
  "module": "subscript.js",
package/parse.js CHANGED
@@ -1,21 +1,6 @@
1
1
  // Pratt parser core + operator registry + compile
2
2
  // Character codes
3
- const SPACE = 32, BSLASH = 92, U = 117, LBRACE = 123, RBRACE = 125;
4
-
5
- const hex = c =>
6
- (c >= 48 && c <= 57) ||
7
- (c >= 65 && c <= 70) ||
8
- (c >= 97 && c <= 102),
9
-
10
- uesc = (n = idx + 2, c, cp = 0, i = 0) => {
11
- if (cur.charCodeAt(idx) !== BSLASH || cur.charCodeAt(idx + 1) !== U) return 0;
12
- if (cur.charCodeAt(n) === LBRACE) {
13
- while (hex(c = cur.charCodeAt(++n))) cp = cp * 16 + (c <= 57 ? c - 48 : (c & 31) + 9);
14
- return n > idx + 3 && cp <= 0x10ffff && cur.charCodeAt(n) === RBRACE ? n - idx + 1 : 0;
15
- }
16
- while (i < 4 && hex(cur.charCodeAt(n + i))) i++;
17
- return i === 4 ? 6 : 0;
18
- };
3
+ const SPACE = 32;
19
4
 
20
5
  let lineBreak;
21
6
 
@@ -42,7 +27,7 @@ export let idx, cur,
42
27
 
43
28
  // advance until condition meets
44
29
  next = (is, from = idx, l) => {
45
- while (l = is(cur.charCodeAt(idx)) || (is === parse.id && uesc())) idx += l;
30
+ while (l = is(cur.charCodeAt(idx))) idx += l;
46
31
  return cur.slice(from, idx);
47
32
  },
48
33
 
package/subscript.min.js CHANGED
@@ -1,5 +1,5 @@
1
- var G=r=>r>=48&&r<=57||r>=65&&r<=70||r>=97&&r<=102,pr=(r=s+2,e,t=0,o=0)=>{if(l.charCodeAt(s)!==92||l.charCodeAt(s+1)!==117)return 0;if(l.charCodeAt(r)===123){for(;G(e=l.charCodeAt(++r));)t=t*16+(e<=57?e-48:(e&31)+9);return r>s+3&&t<=1114111&&l.charCodeAt(r)===125?r-s+1:0}for(;o<4&&G(l.charCodeAt(r+o));)o++;return o===4?6:0},M,s,l,m=r=>(s=0,l=r,m.newline=!1,r=h(),l[s]?y():r||""),y=(r="Unexpected token",e=s,t=l.slice(0,e).split(`
2
- `),o=t.pop(),n=l.slice(Math.max(0,e-40),e),p="\u032D",A=(l[e]||" ")+p,d=l.slice(e+1,e+20))=>{throw SyntaxError(`${r} at ${t.length+1}:${o.length+1}
3
- ${l[e-41]!==`
4
- `,""+n}${A}${d}`)},K=(r,e=s)=>(Array.isArray(r)&&(r.loc=e),r),R=(r,e=s,t)=>{for(;t=r(l.charCodeAt(s))||r===m.id&&pr();)s+=t;return l.slice(e,s)},S=(r=1)=>l[s+=r],W=r=>s=r,h=(r=0,e)=>{let t,o,n,p,A;for(e&&m.asi&&(m.newline=!1);(t=m.space())&&(A=m.newline,1)&&t!==e&&(n=(o&&t===91&&M&&m.asi?.(o,r,h)||null)??((p=C[t])&&p(o,r))??(o&&A&&m.asi?.(o,r,h))??(!o&&R(m.id)));)o=n;return e&&(t==e?(s++,e===125&&m.asi&&(m.newline=!0)):y("Unclosed "+String.fromCharCode(e-(e>42?2:1)))),o},z=(r,e=s)=>{for(M=!1;(r=l.charCodeAt(s))<=32;)m.asi&&r===10&&(m.newline=M=!0),s++;return r},Fr=(r=s)=>{for(;l.charCodeAt(r)<=32;)r++;return l.charCodeAt(r)},Or=m.id=r=>r>=48&&r<=57||r>=65&&r<=90||r>=97&&r<=122||r==36||r==95||r>=192&&r!=215&&r!=247,Xr=(r,e=r.length)=>l.substr(s,e)===r&&!m.id(l.charCodeAt(s+e)),Hr=()=>(S(),h(0,41)),C=[],J={},c=(r,e=32,t,o=r.charCodeAt(0),n=r.length,p=C[o],A=r.toUpperCase()!==r,d,w)=>(e=J[r]=!p&&J[r]||e,C[o]=(g,_,U,v=s)=>(d=U,(U?r==U:(n<2||r.charCodeAt(1)===l.charCodeAt(s+1)&&(n<3||l.substr(s,n)==r))&&(!A||!m.id(l.charCodeAt(s+n)))&&(d=U=r))&&_<e&&(s+=n,(w=t(g))?K(w,v):(s=v,d=0,!A&&!p&&!g&&y()),w)||p?.(g,_,d))),f=(r,e,t=!1)=>c(r,e,o=>o&&(n=>n&&[r,o,n])(h(e-(t?.5:0)))),E=(r,e,t)=>c(r,e,o=>t?o&&[r,o]:!o&&(o=h(e-.5))&&[r,o]),Qr=(r,e)=>c(r,200,t=>!t&&[,e]),$=(r,e,t)=>c(r,e,(o,n)=>(n=h(e-(t?.5:0)),o?.[0]!==r&&(o=[r,o||null]),n?.[0]===r?o.push(...n.slice(1)):o.push(n||null),o)),V=(r,e)=>c(r[0],e,t=>!t&&[r,h(0,r.charCodeAt(1))||null]),F=(r,e)=>c(r[0],e,t=>t&&[r,t,h(0,r.charCodeAt(1))||null]),vr=(r,e,t,o=r.charCodeAt(0),n=r.length,p=C[o],A)=>C[o]=(d,w,g,_=s)=>!d&&(g?r==g:(n<2||l.substr(s,n)==r)&&(g=r))&&w<e&&!m.id(l.charCodeAt(s+n))&&(!m.prop||m.prop(s+n))&&(W(s+n),(A=t())?K(A,_):W(_),A)||p?.(d,w,g);Object.defineProperty(m,"space",{configurable:!0,enumerable:!0,get:()=>z,set:r=>z=r});var N={},u=(r,e,t=N[r])=>N[r]=(...o)=>e(...o)||t?.(...o),i=r=>Array.isArray(r)?r[0]==null?(e=>()=>e)(r[1]):N[r[0]]?.(...r.slice(1))??y(`Unknown operator: ${r[0]}`,r?.loc):r===void 0?()=>{}:e=>e?.[r];var L=46,I=48,P=57,mr=69,fr=101,Ar=43,dr=45,B=95,Y=110,hr=97,Cr=102,cr=65,gr=70,Z=r=>r.indexOf("_")<0?r:r.replaceAll("_",""),O=r=>{let e=Z(R(t=>t===L&&l.charCodeAt(s+1)!==L||t>=I&&t<=P||t===B||((t===mr||t===fr)&&((t=l.charCodeAt(s+1))>=I&&t<=P||t===Ar||t===dr)?2:0)));return l.charCodeAt(s)===Y?(S(),[,BigInt(e)]):(r=+e)!=r?y():[,r]},yr={2:r=>r===48||r===49||r===B,8:r=>r>=48&&r<=55||r===B,16:r=>r>=I&&r<=P||r>=hr&&r<=Cr||r>=cr&&r<=gr||r===B};m.number=null;C[L]=r=>!r&&l.charCodeAt(s+1)!==L&&O();for(let r=I;r<=P;r++)C[r]=e=>e?void 0:O();C[I]=r=>{if(r)return;let e=m.number;if(e){for(let[t,o]of Object.entries(e))if(t[0]==="0"&&l[s+1]?.toLowerCase()===t[1]){S(2);let n=Z(R(yr[o]));return l.charCodeAt(s)===Y?(S(),[,BigInt("0"+t[1]+n)]):[,parseInt(n,o)]}}return O()};var Sr=92,q=34,x=39,Er={n:`
5
- `,r:"\r",t:" ",b:"\b",f:"\f",v:"\v"},j=r=>(e,t,o="")=>{if(!(e||!m.string?.[String.fromCharCode(r)]))return S(),R(n=>n-r&&(n===Sr?(o+=Er[l[s+1]]||l[s+1],2):(o+=l[s],1))),l[s]===String.fromCharCode(r)?S():y("Bad string"),[,o]};C[q]=j(q);C[x]=j(x);m.string={'"':!0};var wr=20;"= += -= *= /= %= |= &= ^= >>= <<=".split(" ").map(r=>f(r,wr,!0));var b=(r,e,t,o)=>typeof r=="string"?n=>e(n,r,n):r[0]==="."?(t=i(r[1]),o=r[2],n=>e(t(n),o,n)):r[0]==="[]"&&r.length===3?(t=i(r[1]),o=i(r[2]),n=>e(t(n),o(n),n)):r[0]==="()"&&r.length===2?b(r[1],e):(()=>{throw Error("Invalid assignment target")})(),a={"=":(r,e,t)=>r[e]=t,"+=":(r,e,t)=>r[e]+=t,"-=":(r,e,t)=>r[e]-=t,"*=":(r,e,t)=>r[e]*=t,"/=":(r,e,t)=>r[e]/=t,"%=":(r,e,t)=>r[e]%=t,"|=":(r,e,t)=>r[e]|=t,"&=":(r,e,t)=>r[e]&=t,"^=":(r,e,t)=>r[e]^=t,">>=":(r,e,t)=>r[e]>>=t,"<<=":(r,e,t)=>r[e]<<=t};for(let r in a)u(r,(e,t)=>(t=i(t),b(e,(o,n,p)=>a[r](o,n,t(p)))));var Rr=30,_r=40,Ir=140;E("!",Ir);f("||",Rr);f("&&",_r);u("!",r=>(r=i(r),e=>!r(e)));u("||",(r,e)=>(r=i(r),e=i(e),t=>r(t)||e(t)));u("&&",(r,e)=>(r=i(r),e=i(e),t=>r(t)&&e(t)));var Ur=50,Br=60,Lr=70,rr=100,Pr=140;f("|",Ur);f("&",Lr);f("^",Br);f(">>",rr);f("<<",rr);E("~",Pr);u("~",r=>(r=i(r),e=>~r(e)));u("|",(r,e)=>(r=i(r),e=i(e),t=>r(t)|e(t)));u("&",(r,e)=>(r=i(r),e=i(e),t=>r(t)&e(t)));u("^",(r,e)=>(r=i(r),e=i(e),t=>r(t)^e(t)));u(">>",(r,e)=>(r=i(r),e=i(e),t=>r(t)>>e(t)));u("<<",(r,e)=>(r=i(r),e=i(e),t=>r(t)<<e(t)));var T=90;f("<",T);f(">",T);f("<=",T);f(">=",T);u(">",(r,e)=>(r=i(r),e=i(e),t=>r(t)>e(t)));u("<",(r,e)=>(r=i(r),e=i(e),t=>r(t)<e(t)));u(">=",(r,e)=>(r=i(r),e=i(e),t=>r(t)>=e(t)));u("<=",(r,e)=>(r=i(r),e=i(e),t=>r(t)<=e(t)));var er=80;f("==",er);f("!=",er);u("==",(r,e)=>(r=i(r),e=i(e),t=>r(t)==e(t)));u("!=",(r,e)=>(r=i(r),e=i(e),t=>r(t)!=e(t)));var tr=110,X=120,or=140;f("+",tr);f("-",tr);f("*",X);f("/",X);f("%",X);E("+",or);E("-",or);u("+",(r,e)=>e!==void 0?(r=i(r),e=i(e),t=>r(t)+e(t)):(r=i(r),t=>+r(t)));u("-",(r,e)=>e!==void 0?(r=i(r),e=i(e),t=>r(t)-e(t)):(r=i(r),t=>-r(t)));u("*",(r,e)=>(r=i(r),e=i(e),t=>r(t)*e(t)));u("/",(r,e)=>(r=i(r),e=i(e),t=>r(t)/e(t)));u("%",(r,e)=>(r=i(r),e=i(e),t=>r(t)%e(t)));var k=150;c("++",k,r=>r?["++",r,null]:["++",h(k-1)]);c("--",k,r=>r?["--",r,null]:["--",h(k-1)]);var H=(r,e,t,o)=>typeof r=="string"?n=>e(n,r):r[0]==="."?(t=i(r[1]),o=r[2],n=>e(t(n),o)):r[0]==="[]"&&r.length===3?(t=i(r[1]),o=i(r[2]),n=>e(t(n),o(n))):r[0]==="()"&&r.length===2?H(r[1],e):(()=>{throw Error("Invalid increment target")})();u("++",(r,e)=>H(r,e===null?(t,o)=>t[o]++:(t,o)=>++t[o]));u("--",(r,e)=>H(r,e===null?(t,o)=>t[o]--:(t,o)=>--t[o]));var Tr=5,kr=10;$(",",kr);$(";",Tr,!0);var nr=(...r)=>(r=r.map(i),e=>{let t;for(let o of r)t=o(e);return t});u(",",nr);u(";",nr);var Dr=170;V("()",Dr);var ir=r=>r?.[0]==="_"&&r[1]==="_"||r==="constructor"||r==="prototype",Q=170;F("[]",Q);f(".",Q);F("()",Q);var D=r=>{throw Error(r)};u("[]",(r,e)=>e===void 0?(r=r?r[0]===","?r.slice(1):[r]:[],r=r.map(t=>t==null?(()=>{}):t[0]==="..."?(t=i(t[1]),o=>t(o)):(t=i(t),o=>[t(o)])),t=>r.flatMap(o=>o(t))):(e==null&&D("Missing index"),r=i(r),e=i(e),t=>{let o=e(t);return ir(o)?void 0:r(t)[o]}));u(".",(r,e)=>(r=i(r),e=e[0]?e:e[1],ir(e)?()=>{}:t=>r(t)[e]));u("()",(r,e)=>{if(e===void 0)return r==null?D("Empty ()"):i(r);let t=n=>n?.[0]===","&&n.slice(1).some(p=>p==null||t(p));t(e)&&D("Empty argument");let o=e?e[0]===","?(e=e.slice(1).map(i),n=>e.map(p=>p(n))):(e=i(e),n=>[e(n)]):()=>[];return sr(r,(n,p,A)=>n[p](...o(A)))});var sr=(r,e,t,o)=>r==null?D("Empty ()"):r[0]==="()"&&r.length==2?sr(r[1],e):typeof r=="string"?n=>e(n,r,n):r[0]==="."?(t=i(r[1]),o=r[2],n=>e(t(n),o,n)):r[0]==="?."?(t=i(r[1]),o=r[2],n=>{let p=t(n);return p==null?void 0:e(p,o,n)}):r[0]==="[]"&&r.length===3?(t=i(r[1]),o=i(r[2]),n=>e(t(n),o(n),n)):r[0]==="?.[]"?(t=i(r[1]),o=i(r[2]),n=>{let p=t(n);return p==null?void 0:e(p,o(n),n)}):(r=i(r),n=>e([r(n)],0,n));var lr=new WeakMap,Mr=(r,...e)=>typeof r=="string"?i(m(r)):lr.get(r)||lr.set(r,Nr(r,e)).get(r),ur=57344,Nr=(r,e)=>{let t=r.reduce((p,A,d)=>p+(d?String.fromCharCode(ur+d-1):"")+A,""),o=m(t),n=p=>{if(typeof p=="string"&&p.length===1){let A=p.charCodeAt(0)-ur,d;if(A>=0&&A<e.length)return d=e[A],$r(d)?d:[,d]}return Array.isArray(p)?p.map(n):p};return i(n(o))},$r=r=>typeof r=="string"||Array.isArray(r)&&(typeof r[0]=="string"||r[0]===void 0),Ce=Mr;export{F as access,f as binary,i as compile,l as cur,Ce as default,y as err,h as expr,V as group,Or as id,s as idx,vr as keyword,Qr as literal,K as loc,C as lookup,$ as nary,R as next,u as operator,N as operators,Hr as parens,m as parse,Fr as peek,J as prec,W as seek,S as skip,z as space,c as token,E as unary,Xr as word};
1
+ var N,s,u,m=r=>(s=0,u=r,m.newline=!1,r=c(),u[s]?y():r||""),y=(r="Unexpected token",e=s,t=u.slice(0,e).split(`
2
+ `),n=t.pop(),o=u.slice(Math.max(0,e-40),e),p="\u032D",d=(u[e]||" ")+p,A=u.slice(e+1,e+20))=>{throw SyntaxError(`${r} at ${t.length+1}:${n.length+1}
3
+ ${u[e-41]!==`
4
+ `,""+o}${d}${A}`)},J=(r,e=s)=>(Array.isArray(r)&&(r.loc=e),r),_=(r,e=s,t)=>{for(;t=r(u.charCodeAt(s));)s+=t;return u.slice(e,s)},S=(r=1)=>u[s+=r],G=r=>s=r,c=(r=0,e)=>{let t,n,o,p,d;for(e&&m.asi&&(m.newline=!1);(t=m.space())&&(d=m.newline,1)&&t!==e&&(o=(n&&t===91&&N&&m.asi?.(n,r,c)||null)??((p=h[t])&&p(n,r))??(n&&d&&m.asi?.(n,r,c))??(!n&&_(m.id)));)n=o;return e&&(t==e?(s++,e===125&&m.asi&&(m.newline=!0)):y("Unclosed "+String.fromCharCode(e-(e>42?2:1)))),n},W=(r,e=s)=>{for(N=!1;(r=u.charCodeAt(s))<=32;)m.asi&&r===10&&(m.newline=N=!0),s++;return r},$r=(r=s)=>{for(;u.charCodeAt(r)<=32;)r++;return u.charCodeAt(r)},Fr=m.id=r=>r>=48&&r<=57||r>=65&&r<=90||r>=97&&r<=122||r==36||r==95||r>=192&&r!=215&&r!=247,Or=(r,e=r.length)=>u.substr(s,e)===r&&!m.id(u.charCodeAt(s+e)),Br=()=>(S(),c(0,41)),h=[],z={},g=(r,e=32,t,n=r.charCodeAt(0),o=r.length,p=h[n],d=r.toUpperCase()!==r,A,w)=>(e=z[r]=!p&&z[r]||e,h[n]=(C,I,T,v=s)=>(A=T,(T?r==T:(o<2||r.charCodeAt(1)===u.charCodeAt(s+1)&&(o<3||u.substr(s,o)==r))&&(!d||!m.id(u.charCodeAt(s+o)))&&(A=T=r))&&I<e&&(s+=o,(w=t(C))?J(w,v):(s=v,A=0,!d&&!p&&!C&&y()),w)||p?.(C,I,A))),f=(r,e,t=!1)=>g(r,e,n=>n&&(o=>o&&[r,n,o])(c(e-(t?.5:0)))),E=(r,e,t)=>g(r,e,n=>t?n&&[r,n]:!n&&(n=c(e-.5))&&[r,n]),Xr=(r,e)=>g(r,200,t=>!t&&[,e]),F=(r,e,t)=>g(r,e,(n,o)=>(o=c(e-(t?.5:0)),n?.[0]!==r&&(n=[r,n||null]),o?.[0]===r?n.push(...o.slice(1)):n.push(o||null),n)),K=(r,e)=>g(r[0],e,t=>!t&&[r,c(0,r.charCodeAt(1))||null]),O=(r,e)=>g(r[0],e,t=>t&&[r,t,c(0,r.charCodeAt(1))||null]),Qr=(r,e,t,n=r.charCodeAt(0),o=r.length,p=h[n],d)=>h[n]=(A,w,C,I=s)=>!A&&(C?r==C:(o<2||u.substr(s,o)==r)&&(C=r))&&w<e&&!m.id(u.charCodeAt(s+o))&&(!m.prop||m.prop(s+o))&&(G(s+o),(d=t())?J(d,I):G(I),d)||p?.(A,w,C);Object.defineProperty(m,"space",{configurable:!0,enumerable:!0,get:()=>W,set:r=>W=r});var $={},l=(r,e,t=$[r])=>$[r]=(...n)=>e(...n)||t?.(...n),i=r=>Array.isArray(r)?r[0]==null?(e=>()=>e)(r[1]):$[r[0]]?.(...r.slice(1))??y(`Unknown operator: ${r[0]}`,r?.loc):r===void 0?()=>{}:e=>e?.[r];var R=46,P=48,k=57,pr=69,ur=101,mr=43,fr=45,U=95,V=110,dr=97,Ar=102,cr=65,hr=70,Y=r=>r.indexOf("_")<0?r:r.replaceAll("_",""),B=r=>{let e=Y(_(t=>t===R&&u.charCodeAt(s+1)!==R||t>=P&&t<=k||t===U||((t===pr||t===ur)&&((t=u.charCodeAt(s+1))>=P&&t<=k||t===mr||t===fr)?2:0)));return u.charCodeAt(s)===V?(S(),[,BigInt(e)]):(r=+e)!=r?y():[,r]},gr={2:r=>r===48||r===49||r===U,8:r=>r>=48&&r<=55||r===U,16:r=>r>=P&&r<=k||r>=dr&&r<=Ar||r>=cr&&r<=hr||r===U};m.number=null;h[R]=r=>!r&&u.charCodeAt(s+1)!==R&&B();for(let r=P;r<=k;r++)h[r]=e=>e?void 0:B();h[P]=r=>{if(r)return;let e=m.number;if(e){for(let[t,n]of Object.entries(e))if(t[0]==="0"&&u[s+1]?.toLowerCase()===t[1]){S(2);let o=Y(_(gr[n]));return u.charCodeAt(s)===V?(S(),[,BigInt("0"+t[1]+o)]):[,parseInt(o,n)]}}return B()};var Cr=92,Z=34,q=39,yr={n:`
5
+ `,r:"\r",t:" ",b:"\b",f:"\f",v:"\v"},x=r=>(e,t,n="")=>{if(!(e||!m.string?.[String.fromCharCode(r)]))return S(),_(o=>o-r&&(o===Cr?(n+=yr[u[s+1]]||u[s+1],2):(n+=u[s],1))),u[s]===String.fromCharCode(r)?S():y("Bad string"),[,n]};h[Z]=x(Z);h[q]=x(q);m.string={'"':!0};var Sr=20;"= += -= *= /= %= |= &= ^= >>= <<=".split(" ").map(r=>f(r,Sr,!0));var a=(r,e,t,n)=>typeof r=="string"?o=>e(o,r,o):r[0]==="."?(t=i(r[1]),n=r[2],o=>e(t(o),n,o)):r[0]==="[]"&&r.length===3?(t=i(r[1]),n=i(r[2]),o=>e(t(o),n(o),o)):r[0]==="()"&&r.length===2?a(r[1],e):(()=>{throw Error("Invalid assignment target")})(),j={"=":(r,e,t)=>r[e]=t,"+=":(r,e,t)=>r[e]+=t,"-=":(r,e,t)=>r[e]-=t,"*=":(r,e,t)=>r[e]*=t,"/=":(r,e,t)=>r[e]/=t,"%=":(r,e,t)=>r[e]%=t,"|=":(r,e,t)=>r[e]|=t,"&=":(r,e,t)=>r[e]&=t,"^=":(r,e,t)=>r[e]^=t,">>=":(r,e,t)=>r[e]>>=t,"<<=":(r,e,t)=>r[e]<<=t};for(let r in j)l(r,(e,t)=>(t=i(t),a(e,(n,o,p)=>j[r](n,o,t(p)))));var Er=30,wr=40,_r=140;E("!",_r);f("||",Er);f("&&",wr);l("!",r=>(r=i(r),e=>!r(e)));l("||",(r,e)=>(r=i(r),e=i(e),t=>r(t)||e(t)));l("&&",(r,e)=>(r=i(r),e=i(e),t=>r(t)&&e(t)));var Ir=50,Pr=60,Tr=70,b=100,Ur=140;f("|",Ir);f("&",Tr);f("^",Pr);f(">>",b);f("<<",b);E("~",Ur);l("~",r=>(r=i(r),e=>~r(e)));l("|",(r,e)=>(r=i(r),e=i(e),t=>r(t)|e(t)));l("&",(r,e)=>(r=i(r),e=i(e),t=>r(t)&e(t)));l("^",(r,e)=>(r=i(r),e=i(e),t=>r(t)^e(t)));l(">>",(r,e)=>(r=i(r),e=i(e),t=>r(t)>>e(t)));l("<<",(r,e)=>(r=i(r),e=i(e),t=>r(t)<<e(t)));var D=90;f("<",D);f(">",D);f("<=",D);f(">=",D);l(">",(r,e)=>(r=i(r),e=i(e),t=>r(t)>e(t)));l("<",(r,e)=>(r=i(r),e=i(e),t=>r(t)<e(t)));l(">=",(r,e)=>(r=i(r),e=i(e),t=>r(t)>=e(t)));l("<=",(r,e)=>(r=i(r),e=i(e),t=>r(t)<=e(t)));var rr=80;f("==",rr);f("!=",rr);l("==",(r,e)=>(r=i(r),e=i(e),t=>r(t)==e(t)));l("!=",(r,e)=>(r=i(r),e=i(e),t=>r(t)!=e(t)));var er=110,X=120,tr=140;f("+",er);f("-",er);f("*",X);f("/",X);f("%",X);E("+",tr);E("-",tr);l("+",(r,e)=>e!==void 0?(r=i(r),e=i(e),t=>r(t)+e(t)):(r=i(r),t=>+r(t)));l("-",(r,e)=>e!==void 0?(r=i(r),e=i(e),t=>r(t)-e(t)):(r=i(r),t=>-r(t)));l("*",(r,e)=>(r=i(r),e=i(e),t=>r(t)*e(t)));l("/",(r,e)=>(r=i(r),e=i(e),t=>r(t)/e(t)));l("%",(r,e)=>(r=i(r),e=i(e),t=>r(t)%e(t)));var M=150;g("++",M,r=>r?["++",r,null]:["++",c(M-1)]);g("--",M,r=>r?["--",r,null]:["--",c(M-1)]);var Q=(r,e,t,n)=>typeof r=="string"?o=>e(o,r):r[0]==="."?(t=i(r[1]),n=r[2],o=>e(t(o),n)):r[0]==="[]"&&r.length===3?(t=i(r[1]),n=i(r[2]),o=>e(t(o),n(o))):r[0]==="()"&&r.length===2?Q(r[1],e):(()=>{throw Error("Invalid increment target")})();l("++",(r,e)=>Q(r,e===null?(t,n)=>t[n]++:(t,n)=>++t[n]));l("--",(r,e)=>Q(r,e===null?(t,n)=>t[n]--:(t,n)=>--t[n]));var Rr=5,kr=10;F(",",kr);F(";",Rr,!0);var nr=(...r)=>(r=r.map(i),e=>{let t;for(let n of r)t=n(e);return t});l(",",nr);l(";",nr);var Dr=170;K("()",Dr);var or=r=>r?.[0]==="_"&&r[1]==="_"||r==="constructor"||r==="prototype",H=170;O("[]",H);f(".",H);O("()",H);var L=r=>{throw Error(r)};l("[]",(r,e)=>e===void 0?(r=r?r[0]===","?r.slice(1):[r]:[],r=r.map(t=>t==null?(()=>{}):t[0]==="..."?(t=i(t[1]),n=>t(n)):(t=i(t),n=>[t(n)])),t=>r.flatMap(n=>n(t))):(e==null&&L("Missing index"),r=i(r),e=i(e),t=>{let n=e(t);return or(n)?void 0:r(t)[n]}));l(".",(r,e)=>(r=i(r),e=e[0]?e:e[1],or(e)?()=>{}:t=>r(t)[e]));l("()",(r,e)=>{if(e===void 0)return r==null?L("Empty ()"):i(r);let t=o=>o?.[0]===","&&o.slice(1).some(p=>p==null||t(p));t(e)&&L("Empty argument");let n=e?e[0]===","?(e=e.slice(1).map(i),o=>e.map(p=>p(o))):(e=i(e),o=>[e(o)]):()=>[];return ir(r,(o,p,d)=>o[p](...n(d)))});var ir=(r,e,t,n)=>r==null?L("Empty ()"):r[0]==="()"&&r.length==2?ir(r[1],e):typeof r=="string"?o=>e(o,r,o):r[0]==="."?(t=i(r[1]),n=r[2],o=>e(t(o),n,o)):r[0]==="?."?(t=i(r[1]),n=r[2],o=>{let p=t(o);return p==null?void 0:e(p,n,o)}):r[0]==="[]"&&r.length===3?(t=i(r[1]),n=i(r[2]),o=>e(t(o),n(o),o)):r[0]==="?.[]"?(t=i(r[1]),n=i(r[2]),o=>{let p=t(o);return p==null?void 0:e(p,n(o),o)}):(r=i(r),o=>e([r(o)],0,o));var sr=new WeakMap,Mr=(r,...e)=>typeof r=="string"?i(m(r)):sr.get(r)||sr.set(r,Lr(r,e)).get(r),lr=57344,Lr=(r,e)=>{let t=r.reduce((p,d,A)=>p+(A?String.fromCharCode(lr+A-1):"")+d,""),n=m(t),o=p=>{if(typeof p=="string"&&p.length===1){let d=p.charCodeAt(0)-lr,A;if(d>=0&&d<e.length)return A=e[d],Nr(A)?A:[,A]}return Array.isArray(p)?p.map(o):p};return i(o(n))},Nr=r=>typeof r=="string"||Array.isArray(r)&&(typeof r[0]=="string"||r[0]===void 0),Ae=Mr;export{O as access,f as binary,i as compile,u as cur,Ae as default,y as err,c as expr,K as group,Fr as id,s as idx,Qr as keyword,Xr as literal,J as loc,h as lookup,F as nary,_ as next,l as operator,$ as operators,Br as parens,m as parse,$r as peek,z as prec,G as seek,S as skip,W as space,g as token,E as unary,Or as word};