@nsis/dent 0.7.1 → 0.8.0
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/README.md +5 -6
- package/dist/dent.mjs +5 -5
- package/package.json +59 -57
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
## Usage
|
|
17
17
|
|
|
18
18
|
```ts
|
|
19
|
-
import { createFormatter } from
|
|
19
|
+
import { createFormatter } from "@nsis/dent";
|
|
20
20
|
|
|
21
21
|
const { format } = createFormatter(/* user options */);
|
|
22
22
|
|
|
@@ -34,7 +34,7 @@ Output of the script above:
|
|
|
34
34
|
```nsis
|
|
35
35
|
# Look ma, no indentation
|
|
36
36
|
Name "Demo"
|
|
37
|
-
|
|
37
|
+
|
|
38
38
|
Section
|
|
39
39
|
Nop
|
|
40
40
|
SectionEnd
|
|
@@ -60,17 +60,17 @@ Default: `"crlf"` (Windows), `"lf"` (Linux, macOS)
|
|
|
60
60
|
#### `options.indentSize`
|
|
61
61
|
|
|
62
62
|
Type: `number`
|
|
63
|
-
Default: `2`
|
|
63
|
+
Default: `2`
|
|
64
64
|
|
|
65
65
|
#### `options.trimEmptyLines`
|
|
66
66
|
|
|
67
67
|
Type: `boolean`
|
|
68
|
-
Default: `true`
|
|
68
|
+
Default: `true`
|
|
69
69
|
|
|
70
70
|
#### `options.useTabs`
|
|
71
71
|
|
|
72
72
|
Type: `boolean`
|
|
73
|
-
Default: `true`
|
|
73
|
+
Default: `true`
|
|
74
74
|
|
|
75
75
|
:white_check_mark: [Why defaulting to tabs is good for accessibility](https://github.com/prettier/prettier/issues/7475#issuecomment-668544890)
|
|
76
76
|
|
|
@@ -81,4 +81,3 @@ Default: `true`
|
|
|
81
81
|
## License
|
|
82
82
|
|
|
83
83
|
This work is licensed under [The MIT License](LICENSE)
|
|
84
|
-
|
package/dist/dent.mjs
CHANGED
|
@@ -4,17 +4,17 @@ import{platform as e}from"node:os";import{detectNewline as t}from"detect-newline
|
|
|
4
4
|
`+a.line+` | `+s+`
|
|
5
5
|
`+r+` | `+``.padEnd(i.column-1,` `)+``.padEnd(c,`^`)}else t+=`
|
|
6
6
|
at `+o}return t}static buildMessage(e,t){function n(e){return e.codePointAt(0).toString(16).toUpperCase()}let r=Object.prototype.hasOwnProperty.call(RegExp.prototype,`unicode`)?RegExp(`[\\p{C}\\p{Mn}\\p{Mc}]`,`gu`):null;function i(e){return r?e.replace(r,e=>`\\u{`+n(e)+`}`):e}function a(e){return i(e.replace(/\\/g,`\\\\`).replace(/"/g,`\\"`).replace(/\0/g,`\\0`).replace(/\t/g,`\\t`).replace(/\n/g,`\\n`).replace(/\r/g,`\\r`).replace(/[\x00-\x0F]/g,e=>`\\x0`+n(e)).replace(/[\x10-\x1F\x7F-\x9F]/g,e=>`\\x`+n(e)))}function o(e){return i(e.replace(/\\/g,`\\\\`).replace(/\]/g,`\\]`).replace(/\^/g,`\\^`).replace(/-/g,`\\-`).replace(/\0/g,`\\0`).replace(/\t/g,`\\t`).replace(/\n/g,`\\n`).replace(/\r/g,`\\r`).replace(/[\x00-\x0F]/g,e=>`\\x0`+n(e)).replace(/[\x10-\x1F\x7F-\x9F]/g,e=>`\\x`+n(e)))}let s={literal(e){return`"`+a(e.text)+`"`},class(e){let t=e.parts.map(e=>Array.isArray(e)?o(e[0])+`-`+o(e[1]):o(e));return`[`+(e.inverted?`^`:``)+t.join(``)+`]`+(e.unicode?`u`:``)},any(){return`any character`},end(){return`end of input`},other(e){return e.description}};function c(e){return s[e.type](e)}function l(e){let t=e.map(c);if(t.sort(),t.length>0){let e=1;for(let n=1;n<t.length;n++)t[n-1]!==t[n]&&(t[e]=t[n],e++);t.length=e}switch(t.length){case 1:return t[0];case 2:return t[0]+` or `+t[1];default:return t.slice(0,-1).join(`, `)+`, or `+t[t.length-1]}}function u(e){return e?`"`+a(e)+`"`:`end of input`}return`Expected `+l(e)+` but `+u(t)+` found.`}};function a(e,t){t=t===void 0?{}:t;let a={},o=t.grammarSource,s={Script:Ie},c=Ie,l=/^[#;]/,u=/^[^\r\n]/,d=/^[\r\n]/,f=/^[a-zA-Z_.]/,p=/^[a-zA-Z0-9_.]/,m=/^[a-zA-Z]/,h=/^[a-zA-Z_]/,g=/^[a-zA-Z0-9_]/,_=/^[a-zA-Z0-9]/,v=/^[^"\r\n]/,y=/^[^'\r\n]/,b=/^[^`\r\n]/,x=/^[^ \t\r\n;#]/,S=/^[ \t]/,C=/^[\n\r]/,w=K([`#`,`;`],!1,!1,!1),T=K([`\r`,`
|
|
7
|
-
`],!0,!1,!1),
|
|
8
|
-
`],!1,!1,!1),
|
|
7
|
+
`],!0,!1,!1),ee=G(`/*`,!1),E=G(`*/`,!1),D=je(),O=K([`\r`,`
|
|
8
|
+
`],!1,!1,!1),k=K([[`a`,`z`],[`A`,`Z`],`_`,`.`],!1,!1,!1),A=K([[`a`,`z`],[`A`,`Z`],[`0`,`9`],`_`,`.`],!1,!1,!1),j=G(`:`,!1),M=q(`keyword`),te=G(`!`,!1),N=K([[`a`,`z`],[`A`,`Z`]],!1,!1,!1),ne=G("${",!1),re=K([[`a`,`z`],[`A`,`Z`],`_`],!1,!1,!1),ie=G(`}`,!1),P=K([[`a`,`z`],[`A`,`Z`],[`0`,`9`],`_`],!1,!1,!1),ae=G(`::`,!1),F=K([[`a`,`z`],[`A`,`Z`],[`0`,`9`]],!1,!1,!1),oe=q(`argument`),I=G(`"`,!1),L=G(`""`,!1),R=G(`$\\"`,!1),se=K([`"`,`\r`,`
|
|
9
9
|
`],!0,!1,!1),ce=G(`'`,!1),le=K([`'`,`\r`,`
|
|
10
10
|
`],!0,!1,!1),ue=G("`",!1),de=K(["`",`\r`,`
|
|
11
11
|
`],!0,!1,!1),fe=K([` `,` `,`\r`,`
|
|
12
12
|
`,`;`,`#`],!0,!1,!1),pe=K([` `,` `],!1,!1,!1),me=q(`end of line`),he=G(`\r
|
|
13
13
|
`,!1),ge=K([`
|
|
14
|
-
`,`\r`],!1,!1,!1);function _e(e){return e.flat()}function ve(){return{type:`blank`}}function ye(e,t){return{type:`comment`,style:e===`#`?`hash`:`semicolon`,value:t.trimStart()}}function be(e){return{type:`comment`,style:`block`,value:e}}function xe(e,t){return{type:`label`,name:e,comment:t??void 0}}function Se(e,t,n,r){return[{type:`label`,name:e},{type:`instruction`,keyword:t,args:n,...r?{comment:r}:{}}]}function Ce(e,t,n){let r={type:`instruction`,keyword:e,args:t};return n&&(r.comment=n),r}function we(e){return n.has(e.toLowerCase())}function Te(e){return e}function Ee(e){return r.has(e.toLowerCase())}function De(e){return e}function Oe(e){return e}function ke(e,t){return{style:e===`#`?`hash`:`semicolon`,value:t.trimStart()}}let z=t.peg$currPos|0,B=[{line:1,column:1}],V=z,H=t.peg$maxFailExpected||[],U=t.peg$silentFails|0,W;if(t.startRule){if(!(t.startRule in s))throw Error(`Can't start parsing from rule "`+t.startRule+`".`);c=s[t.startRule]}function Ae(t=z){let n=e.codePointAt(t);return n===void 0?``:String.fromCodePoint(n)}function G(e,t){return{type:`literal`,text:e,ignoreCase:t}}function K(e,t,n,r){return{type:`class`,parts:e,inverted:t,ignoreCase:n,unicode:r}}function je(){return{type:`any`}}function Me(){return{type:`end`}}function q(e){return{type:`other`,description:e}}function Ne(t){let n=B[t],r;if(n)return n;if(t>=B.length)r=B.length-1;else for(r=t;!B[--r];);for(n=B[r],n={line:n.line,column:n.column};r<t;)e.charCodeAt(r)===10?(n.line++,n.column=1):n.column++,r++;return B[t]=n,n}function Pe(e,t,n){let r=Ne(e),i=Ne(t),a={source:o,start:{offset:e,line:r.line,column:r.column},end:{offset:t,line:i.line,column:i.column}};return n&&o&&typeof o.offset==`function`&&(a.start=o.offset(a.start),a.end=o.offset(a.end)),a}function J(e){z<V||(z>V&&(V=z,H=[]),H.push(e))}function Fe(e,t,n){return new i(i.buildMessage(e,t),e,t,n)}function Ie(){let e,t,n;for(e=z,t=[],n=Y();n!==a;)t.push(n),n=Y();return t=_e(t),e=t,e}function Y(){let e;return e=ze(),e===a&&(e=Le(),e===a&&(e=Re(),e===a&&(e=Ve(),e===a&&(e=Be(),e===a&&(e=He()))))),e}function Le(){let e,t;return e=z,Z(),t=Qe(),t===a?(z=e,e=a):e=ve(),e}function Re(){let t,n,r,i,o;if(t=z,Z(),n=e.charAt(z),l.test(n)?z++:(n=a,U===0&&J(w)),n!==a){for(r=z,i=[],o=e.charAt(z),u.test(o)?z++:(o=a,U===0&&J(T));o!==a;)i.push(o),o=e.charAt(z),u.test(o)?z++:(o=a,U===0&&J(T));r=e.substring(r,z),i=Q(),i===a?(z=t,t=a):t=ye(n,r)}else z=t,t=a;return t}function ze(){let t,n,r,i,o,s,c;if(t=z,Z(),e.substr(z,2)===`/*`?(n=`/*`,z+=2):(n=a,U===0&&J(
|
|
14
|
+
`,`\r`],!1,!1,!1);function _e(e){return e.flat()}function ve(){return{type:`blank`}}function ye(e,t){return{type:`comment`,style:e===`#`?`hash`:`semicolon`,value:t.trimStart()}}function be(e){return{type:`comment`,style:`block`,value:e}}function xe(e,t){return{type:`label`,name:e,comment:t??void 0}}function Se(e,t,n,r){return[{type:`label`,name:e},{type:`instruction`,keyword:t,args:n,...r?{comment:r}:{}}]}function Ce(e,t,n){let r={type:`instruction`,keyword:e,args:t};return n&&(r.comment=n),r}function we(e){return n.has(e.toLowerCase())}function Te(e){return e}function Ee(e){return r.has(e.toLowerCase())}function De(e){return e}function Oe(e){return e}function ke(e,t){return{style:e===`#`?`hash`:`semicolon`,value:t.trimStart()}}let z=t.peg$currPos|0,B=[{line:1,column:1}],V=z,H=t.peg$maxFailExpected||[],U=t.peg$silentFails|0,W;if(t.startRule){if(!(t.startRule in s))throw Error(`Can't start parsing from rule "`+t.startRule+`".`);c=s[t.startRule]}function Ae(t=z){let n=e.codePointAt(t);return n===void 0?``:String.fromCodePoint(n)}function G(e,t){return{type:`literal`,text:e,ignoreCase:t}}function K(e,t,n,r){return{type:`class`,parts:e,inverted:t,ignoreCase:n,unicode:r}}function je(){return{type:`any`}}function Me(){return{type:`end`}}function q(e){return{type:`other`,description:e}}function Ne(t){let n=B[t],r;if(n)return n;if(t>=B.length)r=B.length-1;else for(r=t;!B[--r];);for(n=B[r],n={line:n.line,column:n.column};r<t;)e.charCodeAt(r)===10?(n.line++,n.column=1):n.column++,r++;return B[t]=n,n}function Pe(e,t,n){let r=Ne(e),i=Ne(t),a={source:o,start:{offset:e,line:r.line,column:r.column},end:{offset:t,line:i.line,column:i.column}};return n&&o&&typeof o.offset==`function`&&(a.start=o.offset(a.start),a.end=o.offset(a.end)),a}function J(e){z<V||(z>V&&(V=z,H=[]),H.push(e))}function Fe(e,t,n){return new i(i.buildMessage(e,t),e,t,n)}function Ie(){let e,t,n;for(e=z,t=[],n=Y();n!==a;)t.push(n),n=Y();return t=_e(t),e=t,e}function Y(){let e;return e=ze(),e===a&&(e=Le(),e===a&&(e=Re(),e===a&&(e=Ve(),e===a&&(e=Be(),e===a&&(e=He()))))),e}function Le(){let e,t;return e=z,Z(),t=Qe(),t===a?(z=e,e=a):e=ve(),e}function Re(){let t,n,r,i,o;if(t=z,Z(),n=e.charAt(z),l.test(n)?z++:(n=a,U===0&&J(w)),n!==a){for(r=z,i=[],o=e.charAt(z),u.test(o)?z++:(o=a,U===0&&J(T));o!==a;)i.push(o),o=e.charAt(z),u.test(o)?z++:(o=a,U===0&&J(T));r=e.substring(r,z),i=Q(),i===a?(z=t,t=a):t=ye(n,r)}else z=t,t=a;return t}function ze(){let t,n,r,i,o,s,c;if(t=z,Z(),e.substr(z,2)===`/*`?(n=`/*`,z+=2):(n=a,U===0&&J(ee)),n!==a){for(r=z,i=[],o=z,s=z,U++,e.substr(z,2)===`*/`?(c=`*/`,z+=2):(c=a,U===0&&J(E)),U--,c===a?s=void 0:(z=s,s=a),s===a?(z=o,o=a):(e.length>z?(c=e.charAt(z),z++):(c=a,U===0&&J(D)),c===a&&(c=e.charAt(z),d.test(c)?z++:(c=a,U===0&&J(O))),c===a?(z=o,o=a):(s=[s,c],o=s));o!==a;)i.push(o),o=z,s=z,U++,e.substr(z,2)===`*/`?(c=`*/`,z+=2):(c=a,U===0&&J(E)),U--,c===a?s=void 0:(z=s,s=a),s===a?(z=o,o=a):(e.length>z?(c=e.charAt(z),z++):(c=a,U===0&&J(D)),c===a&&(c=e.charAt(z),d.test(c)?z++:(c=a,U===0&&J(O))),c===a?(z=o,o=a):(s=[s,c],o=s));r=e.substring(r,z),e.substr(z,2)===`*/`?(i=`*/`,z+=2):(i=a,U===0&&J(E)),i===a?(z=t,t=a):(o=Z(),s=Q(),s===a&&(s=null),t=be(r))}else z=t,t=a;return t}function Be(){let t,n,r,i,o,s,c;if(t=z,Z(),n=z,r=z,i=e.charAt(z),f.test(i)?z++:(i=a,U===0&&J(k)),i!==a){for(o=[],s=e.charAt(z),p.test(s)?z++:(s=a,U===0&&J(A));s!==a;)o.push(s),s=e.charAt(z),p.test(s)?z++:(s=a,U===0&&J(A));i=[i,o],r=i}else z=r,r=a;return n=r===a?r:e.substring(n,z),n===a?(z=t,t=a):(e.charCodeAt(z)===58?(r=`:`,z++):(r=a,U===0&&J(j)),r===a?(z=t,t=a):(i=z,U++,e.charCodeAt(z)===58?(o=`:`,z++):(o=a,U===0&&J(j)),U--,o===a?i=void 0:(z=i,i=a),i===a?(z=t,t=a):(o=X(),o===a&&(o=null),s=Z(),c=Q(),c===a?(z=t,t=a):t=xe(n,o)))),t}function Ve(){let t,n,r,i,o,s,c,l,u;if(t=z,Z(),n=z,r=z,i=e.charAt(z),f.test(i)?z++:(i=a,U===0&&J(k)),i!==a){for(o=[],s=e.charAt(z),p.test(s)?z++:(s=a,U===0&&J(A));s!==a;)o.push(s),s=e.charAt(z),p.test(s)?z++:(s=a,U===0&&J(A));i=[i,o],r=i}else z=r,r=a;return n=r===a?r:e.substring(n,z),n===a?(z=t,t=a):(e.charCodeAt(z)===58?(r=`:`,z++):(r=a,U===0&&J(j)),r===a?(z=t,t=a):(i=z,U++,e.charCodeAt(z)===58?(o=`:`,z++):(o=a,U===0&&J(j)),U--,o===a?i=void 0:(z=i,i=a),i===a?(z=t,t=a):(o=Z(),s=Ue(),s===a?(z=t,t=a):(c=Je(),l=X(),l===a&&(l=null),Z(),u=Q(),u===a?(z=t,t=a):t=Se(n,s,c,l))))),t}function He(){let e,t,n,r,i;return e=z,Z(),t=Ue(),t===a?(z=e,e=a):(n=Je(),r=X(),r===a&&(r=null),Z(),i=Q(),i===a?(z=e,e=a):e=Ce(t,n,r)),e}function Ue(){let e;return U++,e=We(),e===a&&(e=Ge(),e===a&&(e=Ke(),e===a&&(e=qe()))),U--,e===a&&U===0&&J(M),e}function We(){let t,n,r,i,o,s;if(t=z,n=z,r=z,e.charCodeAt(z)===33?(i=`!`,z++):(i=a,U===0&&J(te)),i!==a){if(o=[],s=e.charAt(z),m.test(s)?z++:(s=a,U===0&&J(N)),s!==a)for(;s!==a;)o.push(s),s=e.charAt(z),m.test(s)?z++:(s=a,U===0&&J(N));else o=a;o===a?(z=r,r=a):(i=[i,o],r=i)}else z=r,r=a;return n=r===a?r:e.substring(n,z),n===a?(z=t,t=a):(r=we(n),r=r?void 0:a,r===a?(z=t,t=a):t=Te(n)),t}function Ge(){let t,n,r,i,o,s;if(t=z,n=z,e.substr(z,2)==="${"?(r="${",z+=2):(r=a,U===0&&J(ne)),r!==a)if(i=e.charAt(z),h.test(i)?z++:(i=a,U===0&&J(re)),i!==a){for(o=[],s=e.charAt(z),p.test(s)?z++:(s=a,U===0&&J(A));s!==a;)o.push(s),s=e.charAt(z),p.test(s)?z++:(s=a,U===0&&J(A));e.charCodeAt(z)===125?(s=`}`,z++):(s=a,U===0&&J(ie)),s===a?(z=n,n=a):(r=[r,i,o,s],n=r)}else z=n,n=a;else z=n,n=a;return t=n===a?n:e.substring(t,z),t}function Ke(){let t,n,r,i,o,s,c,l;if(t=z,n=z,r=e.charAt(z),m.test(r)?z++:(r=a,U===0&&J(N)),r!==a){for(i=[],o=e.charAt(z),g.test(o)?z++:(o=a,U===0&&J(P));o!==a;)i.push(o),o=e.charAt(z),g.test(o)?z++:(o=a,U===0&&J(P));if(e.substr(z,2)===`::`?(o=`::`,z+=2):(o=a,U===0&&J(ae)),o!==a)if(s=e.charAt(z),m.test(s)?z++:(s=a,U===0&&J(N)),s!==a){for(c=[],l=e.charAt(z),g.test(l)?z++:(l=a,U===0&&J(P));l!==a;)c.push(l),l=e.charAt(z),g.test(l)?z++:(l=a,U===0&&J(P));r=[r,i,o,s,c],n=r}else z=n,n=a;else z=n,n=a}else z=n,n=a;return t=n===a?n:e.substring(t,z),t}function qe(){let t,n,r,i,o,s;if(t=z,n=z,r=z,i=e.charAt(z),m.test(i)?z++:(i=a,U===0&&J(N)),i!==a){for(o=[],s=e.charAt(z),_.test(s)?z++:(s=a,U===0&&J(F));s!==a;)o.push(s),s=e.charAt(z),_.test(s)?z++:(s=a,U===0&&J(F));i=[i,o],r=i}else z=r,r=a;return n=r===a?r:e.substring(n,z),n===a?(z=t,t=a):(r=Ee(n),r=r?void 0:a,r===a?(z=t,t=a):t=De(n)),t}function Je(){let e,t,n,r;for(e=z,t=[],n=z,Z(),r=Ye(),r===a?(z=n,n=a):n=r;n!==a;)t.push(n),n=z,Z(),r=Ye(),r===a?(z=n,n=a):n=r;return t=Oe(t),e=t,e}function Ye(){let e;return U++,e=Xe(),e===a&&(e=Ze()),U--,e===a&&U===0&&J(oe),e}function Xe(){let t,n,r,i,o;if(t=z,n=z,e.charCodeAt(z)===34?(r=`"`,z++):(r=a,U===0&&J(I)),r!==a){for(i=[],e.substr(z,2)===`""`?(o=`""`,z+=2):(o=a,U===0&&J(L)),o===a&&(e.substr(z,3)===`$\\"`?(o=`$\\"`,z+=3):(o=a,U===0&&J(R)),o===a&&(o=e.charAt(z),v.test(o)?z++:(o=a,U===0&&J(se))));o!==a;)i.push(o),e.substr(z,2)===`""`?(o=`""`,z+=2):(o=a,U===0&&J(L)),o===a&&(e.substr(z,3)===`$\\"`?(o=`$\\"`,z+=3):(o=a,U===0&&J(R)),o===a&&(o=e.charAt(z),v.test(o)?z++:(o=a,U===0&&J(se))));e.charCodeAt(z)===34?(o=`"`,z++):(o=a,U===0&&J(I)),o===a?(z=n,n=a):(r=[r,i,o],n=r)}else z=n,n=a;if(t=n===a?n:e.substring(t,z),t===a){if(t=z,n=z,e.charCodeAt(z)===39?(r=`'`,z++):(r=a,U===0&&J(ce)),r!==a){for(i=[],o=e.charAt(z),y.test(o)?z++:(o=a,U===0&&J(le));o!==a;)i.push(o),o=e.charAt(z),y.test(o)?z++:(o=a,U===0&&J(le));e.charCodeAt(z)===39?(o=`'`,z++):(o=a,U===0&&J(ce)),o===a?(z=n,n=a):(r=[r,i,o],n=r)}else z=n,n=a;if(t=n===a?n:e.substring(t,z),t===a){if(t=z,n=z,e.charCodeAt(z)===96?(r="`",z++):(r=a,U===0&&J(ue)),r!==a){for(i=[],o=e.charAt(z),b.test(o)?z++:(o=a,U===0&&J(de));o!==a;)i.push(o),o=e.charAt(z),b.test(o)?z++:(o=a,U===0&&J(de));e.charCodeAt(z)===96?(o="`",z++):(o=a,U===0&&J(ue)),o===a?(z=n,n=a):(r=[r,i,o],n=r)}else z=n,n=a;t=n===a?n:e.substring(t,z)}}return t}function Ze(){let t,n,r;if(t=z,n=[],r=e.charAt(z),x.test(r)?z++:(r=a,U===0&&J(fe)),r!==a)for(;r!==a;)n.push(r),r=e.charAt(z),x.test(r)?z++:(r=a,U===0&&J(fe));else n=a;return t=n===a?n:e.substring(t,z),t}function X(){let t,n,r,i,o;if(t=z,Z(),n=e.charAt(z),l.test(n)?z++:(n=a,U===0&&J(w)),n!==a){for(r=z,i=[],o=e.charAt(z),u.test(o)?z++:(o=a,U===0&&J(T));o!==a;)i.push(o),o=e.charAt(z),u.test(o)?z++:(o=a,U===0&&J(T));r=e.substring(r,z),t=ke(n,r)}else z=t,t=a;return t}function Z(){let t,n;for(U++,t=[],n=e.charAt(z),S.test(n)?z++:(n=a,U===0&&J(pe));n!==a;)t.push(n),n=e.charAt(z),S.test(n)?z++:(n=a,U===0&&J(pe));return U--,t}function Qe(){let t;return U++,e.substr(z,2)===`\r
|
|
15
15
|
`?(t=`\r
|
|
16
|
-
`,z+=2):(t=a,U===0&&J(he)),t===a&&(t=e.charAt(z),C.test(t)?z++:(t=a,U===0&&J(ge))),U--,t===a&&U===0&&J(me),t}function Q(){let e;return e=Qe(),e===a&&(e=$e()),e}function $e(){let t,n;return t=z,U++,e.length>z?(n=e.charAt(z),z++):(n=a,U===0&&J(O)),U--,n===a?t=void 0:(z=t,t=a),t}W=c();let $=W!==a&&z===e.length;function et(){throw W!==a&&z<e.length&&J(Me()),Fe(H,V<e.length?Ae(V):null,V<e.length?Pe(V,V+1):Pe(V,V))}if(t.peg$library)return{peg$result:W,peg$currPos:z,peg$FAILED:a,peg$maxFailExpected:H,peg$maxFailPos:V,peg$success:$,peg$throw:$?void 0:et};if($)return W;et()}function o(e){return a(e.replace(/^\uFEFF/,``).replace(/\\\r?\n[ \t]*/g,` `))}const s=new Map([[`!addincludedir`,`!addincludedir`],[`!addplugindir`,`!addplugindir`],[`!appendfile`,`!appendfile`],[`!appendmemfile`,`!appendmemfile`],[`!assert`,`!assert`],[`!cd`,`!cd`],[`!define`,`!define`],[`!delfile`,`!delfile`],[`!echo`,`!echo`],[`!else`,`!else`],[`!endif`,`!endif`],[`!error`,`!error`],[`!execute`,`!execute`],[`!finalize`,`!finalize`],[`!getdllversion`,`!getdllversion`],[`!gettlbversion`,`!gettlbversion`],[`!if`,`!if`],[`!ifdef`,`!ifdef`],[`!ifmacrodef`,`!ifmacrodef`],[`!ifmacrondef`,`!ifmacrondef`],[`!ifndef`,`!ifndef`],[`!include`,`!include`],[`!insertmacro`,`!insertmacro`],[`!macro`,`!macro`],[`!macroend`,`!macroend`],[`!macroundef`,`!macroundef`],[`!makensis`,`!makensis`],[`!packhdr`,`!packhdr`],[`!pragma`,`!pragma`],[`!searchparse`,`!searchparse`],[`!searchreplace`,`!searchreplace`],[`!system`,`!system`],[`!tempfile`,`!tempfile`],[`!undef`,`!undef`],[`!uninstfinalize`,`!uninstfinalize`],[`!verbose`,`!verbose`],[`!warning`,`!warning`],[`abort`,`Abort`],[`addbrandingimage`,`AddBrandingImage`],[`addsize`,`AddSize`],[`allowrootdirinstall`,`AllowRootDirInstall`],[`allowskipfiles`,`AllowSkipFiles`],[`autoclosewindow`,`AutoCloseWindow`],[`bgfont`,`BGFont`],[`bggradient`,`BGGradient`],[`brandingtext`,`BrandingText`],[`bringtofront`,`BringToFront`],[`call`,`Call`],[`callinstdll`,`CallInstDLL`],[`caption`,`Caption`],[`changeui`,`ChangeUI`],[`checkbitmap`,`CheckBitmap`],[`clearerrors`,`ClearErrors`],[`completedtext`,`CompletedText`],[`componenttext`,`ComponentText`],[`copyfiles`,`CopyFiles`],[`cpu`,`CPU`],[`crccheck`,`CRCCheck`],[`createdirectory`,`CreateDirectory`],[`createfont`,`CreateFont`],[`createshortcut`,`CreateShortcut`],[`delete`,`Delete`],[`deleteinisec`,`DeleteINISec`],[`deleteinistr`,`DeleteINIStr`],[`deleteregkey`,`DeleteRegKey`],[`deleteregvalue`,`DeleteRegValue`],[`detailprint`,`DetailPrint`],[`detailsbuttontext`,`DetailsButtonText`],[`dirshow`,`DirShow`],[`dirtext`,`DirText`],[`dirvar`,`DirVar`],[`dirverify`,`DirVerify`],[`enablewindow`,`EnableWindow`],[`enumregkey`,`EnumRegKey`],[`enumregvalue`,`EnumRegValue`],[`exch`,`Exch`],[`exec`,`Exec`],[`execshell`,`ExecShell`],[`execshellwait`,`ExecShellWait`],[`execwait`,`ExecWait`],[`expandenvstrings`,`ExpandEnvStrings`],[`file`,`File`],[`filebufsize`,`FileBufSize`],[`fileclose`,`FileClose`],[`fileerrortext`,`FileErrorText`],[`fileopen`,`FileOpen`],[`fileread`,`FileRead`],[`filereadbyte`,`FileReadByte`],[`filereadutf16le`,`FileReadUTF16LE`],[`filereadword`,`FileReadWord`],[`fileseek`,`FileSeek`],[`filewrite`,`FileWrite`],[`filewritebyte`,`FileWriteByte`],[`filewriteutf16le`,`FileWriteUTF16LE`],[`filewriteword`,`FileWriteWord`],[`findclose`,`FindClose`],[`findfirst`,`FindFirst`],[`findnext`,`FindNext`],[`findwindow`,`FindWindow`],[`flushini`,`FlushINI`],[`function`,`Function`],[`functionend`,`FunctionEnd`],[`getcurinsttype`,`GetCurInstType`],[`getcurrentaddress`,`GetCurrentAddress`],[`getdlgitem`,`GetDlgItem`],[`getdllversion`,`GetDLLVersion`],[`getdllversionlocal`,`GetDLLVersionLocal`],[`geterrorlevel`,`GetErrorLevel`],[`getfiletime`,`GetFileTime`],[`getfiletimelocal`,`GetFileTimeLocal`],[`getfullpathname`,`GetFullPathName`],[`getfunctionaddress`,`GetFunctionAddress`],[`getinstdirerror`,`GetInstDirError`],[`getknownfolderpath`,`GetKnownFolderPath`],[`getlabeladdress`,`GetLabelAddress`],[`getregview`,`GetRegView`],[`getshellvarcontext`,`GetShellVarContext`],[`gettempfilename`,`GetTempFileName`],[`getwinver`,`GetWinVer`],[`goto`,`Goto`],[`hidewindow`,`HideWindow`],[`icon`,`Icon`],[`ifabort`,`IfAbort`],[`ifaltregview`,`IfAltRegView`],[`iferrors`,`IfErrors`],[`iffileexists`,`IfFileExists`],[`ifrebootflag`,`IfRebootFlag`],[`ifrtllanguage`,`IfRtlLanguage`],[`ifshellvarcontextall`,`IfShellVarContextAll`],[`ifsilent`,`IfSilent`],[`initpluginsdir`,`InitPluginsDir`],[`installbuttontext`,`InstallButtonText`],[`installcolors`,`InstallColors`],[`installdir`,`InstallDir`],[`installdirregkey`,`InstallDirRegKey`],[`instprogressflags`,`InstProgressFlags`],[`insttype`,`InstType`],[`insttypegettext`,`InstTypeGetText`],[`insttypesettext`,`InstTypeSetText`],[`int64cmp`,`Int64Cmp`],[`int64cmpu`,`Int64CmpU`],[`int64fmt`,`Int64Fmt`],[`intcmp`,`IntCmp`],[`intcmpu`,`IntCmpU`],[`intfmt`,`IntFmt`],[`intop`,`IntOp`],[`intptrcmp`,`IntPtrCmp`],[`intptrcmpu`,`IntPtrCmpU`],[`intptrop`,`IntPtrOp`],[`iswindow`,`IsWindow`],[`langstring`,`LangString`],[`langstringup`,`LangStringUP`],[`licensebkcolor`,`LicenseBkColor`],[`licensedata`,`LicenseData`],[`licenseforceselection`,`LicenseForceSelection`],[`licenselangstring`,`LicenseLangString`],[`licensetext`,`LicenseText`],[`loadandsetimage`,`LoadAndSetImage`],[`loadlanguagefile`,`LoadLanguageFile`],[`lockwindow`,`LockWindow`],[`logset`,`LogSet`],[`logtext`,`LogText`],[`manifestappendcustomstring`,`ManifestAppendCustomString`],[`manifestdisablewindowfiltering`,`ManifestDisableWindowFiltering`],[`manifestdpiaware`,`ManifestDPIAware`],[`manifestdpiawareness`,`ManifestDPIAwareness`],[`manifestgdiscaling`,`ManifestGdiScaling`],[`manifestlongpathaware`,`ManifestLongPathAware`],[`manifestmaxversiontested`,`ManifestMaxVersionTested`],[`manifestsupportedos`,`ManifestSupportedOS`],[`messagebox`,`MessageBox`],[`miscbuttontext`,`MiscButtonText`],[`name`,`Name`],[`nop`,`Nop`],[`outfile`,`OutFile`],[`page`,`Page`],[`pagecallbacks`,`PageCallbacks`],[`pageex`,`PageEx`],[`pageexend`,`PageExEnd`],[`peaddresource`,`PEAddResource`],[`pedllcharacteristics`,`PEDllCharacteristics`],[`peremoveresource`,`PERemoveResource`],[`pesubsysver`,`PESubsysVer`],[`pop`,`Pop`],[`push`,`Push`],[`quit`,`Quit`],[`readenvstr`,`ReadEnvStr`],[`readinistr`,`ReadINIStr`],[`readmemory`,`ReadMemory`],[`readregdword`,`ReadRegDWORD`],[`readregstr`,`ReadRegStr`],[`reboot`,`Reboot`],[`regdll`,`RegDLL`],[`rename`,`Rename`],[`requestexecutionlevel`,`RequestExecutionLevel`],[`reservefile`,`ReserveFile`],[`return`,`Return`],[`rmdir`,`RMDir`],[`searchpath`,`SearchPath`],[`section`,`Section`],[`sectionend`,`SectionEnd`],[`sectiongetflags`,`SectionGetFlags`],[`sectiongetinsttypes`,`SectionGetInstTypes`],[`sectiongetsize`,`SectionGetSize`],[`sectiongettext`,`SectionGetText`],[`sectiongroup`,`SectionGroup`],[`sectiongroupend`,`SectionGroupEnd`],[`sectionin`,`SectionIn`],[`sectioninsttype`,`SectionInstType`],[`sectionsetflags`,`SectionSetFlags`],[`sectionsetinsttypes`,`SectionSetInstTypes`],[`sectionsetsize`,`SectionSetSize`],[`sectionsettext`,`SectionSetText`],[`sendmessage`,`SendMessage`],[`setautoclose`,`SetAutoClose`],[`setbrandingimage`,`SetBrandingImage`],[`setcompress`,`SetCompress`],[`setcompressionlevel`,`SetCompressionLevel`],[`setcompressor`,`SetCompressor`],[`setcompressordictsize`,`SetCompressorDictSize`],[`setctlcolors`,`SetCtlColors`],[`setcurinsttype`,`SetCurInstType`],[`setdatablockoptimize`,`SetDatablockOptimize`],[`setdatesave`,`SetDateSave`],[`setdetailsprint`,`SetDetailsPrint`],[`setdetailsview`,`SetDetailsView`],[`seterrorlevel`,`SetErrorLevel`],[`seterrors`,`SetErrors`],[`setfileattributes`,`SetFileAttributes`],[`setfont`,`SetFont`],[`setoutpath`,`SetOutPath`],[`setoverwrite`,`SetOverwrite`],[`setpluginunload`,`SetPluginUnload`],[`setrebootflag`,`SetRebootFlag`],[`setregview`,`SetRegView`],[`setshellvarcontext`,`SetShellVarContext`],[`setsilent`,`SetSilent`],[`showinstdetails`,`ShowInstDetails`],[`showuninstdetails`,`ShowUninstDetails`],[`showwindow`,`ShowWindow`],[`silentinstall`,`SilentInstall`],[`silentuninstall`,`SilentUnInstall`],[`sleep`,`Sleep`],[`spacetexts`,`SpaceTexts`],[`strcmp`,`StrCmp`],[`strcmps`,`StrCmpS`],[`strcpy`,`StrCpy`],[`strlen`,`StrLen`],[`subcaption`,`SubCaption`],[`subsection`,`SubSection`],[`subsectionend`,`SubSectionEnd`],[`target`,`Target`],[`unicode`,`Unicode`],[`uninstallbuttontext`,`UninstallButtonText`],[`uninstallcaption`,`UninstallCaption`],[`uninstallexename`,`UninstallExeName`],[`uninstallicon`,`UninstallIcon`],[`uninstallsubcaption`,`UninstallSubCaption`],[`uninstalltext`,`UninstallText`],[`uninstpage`,`UninstPage`],[`unregdll`,`UnRegDLL`],[`unsafestrcpy`,`UnsafeStrCpy`],[`var`,`Var`],[`viaddversionkey`,`VIAddVersionKey`],[`vifileversion`,`VIFileVersion`],[`viproductversion`,`VIProductVersion`],[`windowicon`,`WindowIcon`],[`writeinistr`,`WriteINIStr`],[`writeregbin`,`WriteRegBin`],[`writeregdword`,`WriteRegDWORD`],[`writeregexpandstr`,`WriteRegExpandStr`],[`writeregmultistr`,`WriteRegMultiStr`],[`writeregnone`,`WriteRegNone`],[`writeregstr`,`WriteRegStr`],[`writeuninstaller`,`WriteUninstaller`],[`xpstyle`,`XPStyle`]]),c=new Map([[`/silent`,`/SILENT`],[`/filesonly`,`/FILESONLY`],[`/rebootok`,`/REBOOTOK`],[`/short`,`/SHORT`],[`/sd`,`/SD`],[`/branding`,`/BRANDING`],[`/final`,`/FINAL`],[`/solid`,`/SOLID`],[`/global`,`/GLOBAL`],[`/bom`,`/BOM`],[`/italic`,`/ITALIC`],[`/underline`,`/UNDERLINE`],[`/strike`,`/STRIKE`],[`/enablecancel`,`/ENABLECANCEL`],[`/overwrite`,`/OVERWRITE`],[`/replace`,`/REPLACE`],[`/noerrors`,`/NOERRORS`],[`/regedit5`,`/REGEDIT5`],[`/exeresource`,`/EXERESOURCE`],[`/stringid`,`/STRINGID`],[`/resizetofit`,`/RESIZETOFIT`],[`/resizetofitwidth`,`/RESIZETOFITWIDTH`],[`/resizetofitheight`,`/RESIZETOFITHEIGHT`],[`/trimleft`,`/TRIMLEFT`],[`/trimright`,`/TRIMRIGHT`],[`/trimcenter`,`/TRIMCENTER`],[`/windows`,`/windows`],[`/nonfatal`,`/NONFATAL`],[`/nocustom`,`/NOCUSTOM`],[`/uninstnocustom`,`/UNINSTNOCUSTOM`],[`/componentsonlyoncustom`,`/COMPONENTSONLYONCUSTOM`],[`/uninstcomponentsonlyoncustom`,`/UNINSTCOMPONENTSONLYONCUSTOM`],[`/fileexists`,`/FILEEXISTS`],[`/rawnl`,`/RAWNL`],[`/productversion`,`/ProductVersion`],[`/noworkingdir`,`/NoWorkingDir`],[`/r`,`/r`],[`/a`,`/a`],[`/e`,`/e`],[`/o`,`/o`],[`/x`,`/x`],[`/ifempty`,`/ifempty`],[`/ifnosubkeys`,`/ifnosubkeys`],[`/ifnovalues`,`/ifnovalues`],[`/nounload`,`/nounload`],[`/plugin`,`/plugin`],[`/ifndef`,`/ifndef`],[`/redef`,`/redef`],[`/date`,`/date`],[`/utcdate`,`/utcdate`],[`/file`,`/file`],[`/intfmt`,`/intfmt`],[`/math`,`/math`],[`/ignorecase`,`/ignorecase`],[`/packed`,`/packed`],[`/target`,`/target`]]),l=new Map([[`/lang=`,`/LANG=`],[`/timeout=`,`/TIMEOUT=`],[`/charset=`,`/CHARSET=`],[`/imgid=`,`/IMGID=`],[`/customstring=`,`/CUSTOMSTRING=`],[`/uninstcustomstring=`,`/UNINSTCUSTOMSTRING=`],[`/oname=`,`/oname=`]]),u=new Map;function d(e,t){for(let n of e){let e=n.toLowerCase(),r=u.get(e);r||(r=new Map,u.set(e,r));for(let[e,n]of t)r.set(e,n)}}d([`AllowRootDirInstall`,`AllowSkipFiles`,`AutoCloseWindow`,`CRCCheck`,`ManifestDPIAware`,`ManifestDisableWindowFiltering`,`ManifestGdiScaling`,`ManifestLongPathAware`,`SetAutoClose`,`SetDatablockOptimize`,`SetDateSave`,`SetPluginUnload`,`Unicode`,`WindowIcon`],[[`true`,`true`],[`false`,`false`]]),d([`CRCCheck`,`LogSet`,`LockWindow`,`SetCompress`,`SetDateSave`,`SetDatablockOptimize`,`SetOverwrite`,`WindowIcon`,`XPStyle`,`LicenseForceSelection`],[[`on`,`on`],[`off`,`off`]]),d([`FileOpen`],[[`r`,`r`],[`w`,`w`],[`a`,`a`]]),d([`SetCompressor`],[[`zlib`,`zlib`],[`bzip2`,`bzip2`],[`lzma`,`lzma`]]),d([`Target`],[[`x86`,`x86`],[`amd64`,`amd64`]]),d([`SetOverwrite`],[[`try`,`try`],[`ifnewer`,`ifnewer`],[`ifdiff`,`ifdiff`],[`lastused`,`lastused`]]),d([`SetCompress`],[[`auto`,`auto`],[`force`,`force`]]),d([`SilentInstall`],[[`normal`,`normal`],[`silent`,`silent`],[`silentlog`,`silentlog`]]),d([`SilentUnInstall`,`SetSilent`],[[`normal`,`normal`],[`silent`,`silent`]]),d([`ShowInstDetails`,`ShowUninstDetails`],[[`hide`,`hide`],[`show`,`show`],[`nevershow`,`nevershow`]]),d([`SetDetailsView`,`DirShow`],[[`show`,`show`],[`hide`,`hide`]]),d([`SetDetailsPrint`],[[`listonly`,`listonly`],[`textonly`,`textonly`],[`both`,`both`],[`none`,`none`],[`lastused`,`lastused`]]),d([`RequestExecutionLevel`],[[`none`,`none`],[`user`,`user`],[`highest`,`highest`],[`admin`,`admin`]]),d([`AddBrandingImage`],[[`top`,`top`],[`left`,`left`],[`bottom`,`bottom`],[`right`,`right`]]),d([`InstProgressFlags`],[[`smooth`,`smooth`],[`colored`,`colored`]]),d([`LicenseForceSelection`],[[`checkbox`,`checkbox`],[`radiobuttons`,`radiobuttons`]]),d([`SetShellVarContext`],[[`all`,`all`],[`current`,`current`]]),d([`DirVerify`],[[`auto`,`auto`],[`leave`,`leave`]]),d([`ExecShell`,`ExecShellWait`],[[`open`,`open`],[`print`,`print`]]),d([`Page`,`UninstPage`],[[`custom`,`custom`],[`license`,`license`],[`components`,`components`],[`directory`,`directory`],[`instfiles`,`instfiles`],[`uninstconfirm`,`uninstConfirm`]]),d([`SetCtlColors`],[[`transparent`,`transparent`]]),d([`LockWindow`],[[`on`,`on`],[`off`,`off`]]),d([`SetRegView`],[[`default`,`default`]]),d([`DeleteRegKey`,`DeleteRegValue`,`EnumRegKey`,`EnumRegValue`,`InstallDirRegKey`,`ReadRegDWORD`,`ReadRegStr`,`WriteRegBin`,`WriteRegDWORD`,`WriteRegExpandStr`,`WriteRegMultiStr`,`WriteRegNone`,`WriteRegStr`],[[`hkcr`,`HKCR`],[`hkcr32`,`HKCR32`],[`hkcr64`,`HKCR64`],[`hklm`,`HKLM`],[`hklm32`,`HKLM32`],[`hklm64`,`HKLM64`],[`hkcu`,`HKCU`],[`hkcu32`,`HKCU32`],[`hkcu64`,`HKCU64`],[`hku`,`HKU`],[`hkcc`,`HKCC`],[`hkdd`,`HKDD`],[`hkpd`,`HKPD`],[`shctx`,`SHCTX`]]),d([`MessageBox`],[[`mb_ok`,`MB_OK`],[`mb_okcancel`,`MB_OKCANCEL`],[`mb_abortretryignore`,`MB_ABORTRETRYIGNORE`],[`mb_retrycancel`,`MB_RETRYCANCEL`],[`mb_yesno`,`MB_YESNO`],[`mb_yesnocancel`,`MB_YESNOCANCEL`],[`mb_iconexclamation`,`MB_ICONEXCLAMATION`],[`mb_iconinformation`,`MB_ICONINFORMATION`],[`mb_iconquestion`,`MB_ICONQUESTION`],[`mb_iconstop`,`MB_ICONSTOP`],[`mb_usericon`,`MB_USERICON`],[`mb_topmost`,`MB_TOPMOST`],[`mb_setforeground`,`MB_SETFOREGROUND`],[`mb_right`,`MB_RIGHT`],[`mb_defbutton1`,`MB_DEFBUTTON1`],[`mb_defbutton2`,`MB_DEFBUTTON2`],[`mb_defbutton3`,`MB_DEFBUTTON3`],[`mb_defbutton4`,`MB_DEFBUTTON4`],[`idok`,`IDOK`],[`idcancel`,`IDCANCEL`],[`idyes`,`IDYES`],[`idno`,`IDNO`],[`idabort`,`IDABORT`],[`idretry`,`IDRETRY`],[`idignore`,`IDIGNORE`]]),d([`CreateShortcut`,`ShowWindow`],[[`sw_shownormal`,`SW_SHOWNORMAL`],[`sw_showmaximized`,`SW_SHOWMAXIMIZED`],[`sw_showminimized`,`SW_SHOWMINIMIZED`],[`sw_hide`,`SW_HIDE`],[`sw_show`,`SW_SHOW`]]),d([`CreateShortcut`],[[`alt`,`ALT`],[`control`,`CONTROL`],[`ext`,`EXT`],[`shift`,`SHIFT`]]),d([`SetFileAttributes`],[[`archive`,`ARCHIVE`],[`hidden`,`HIDDEN`],[`offline`,`OFFLINE`],[`readonly`,`READONLY`],[`system`,`SYSTEM`],[`temporary`,`TEMPORARY`]]),d([`FileSeek`],[[`set`,`SET`],[`cur`,`CUR`],[`end`,`END`]]),d([`GetWinVer`],[[`major`,`MAJOR`],[`minor`,`MINOR`],[`build`,`BUILD`],[`servicepack`,`SERVICEPACK`]]),d([`ManifestSupportedOS`],[[`winvista`,`WinVista`],[`win7`,`Win7`],[`win8`,`Win8`],[`win8.1`,`Win8.1`],[`win10`,`Win10`]]),d([`ChangeUI`],[[`dlg_id`,`dlg_id`]]);const f=u;function p(e){return new Set(e.map(e=>e.toLowerCase()))}const m={open:p("!if.!ifdef.!ifmacrodef.!ifmacrondef.!ifndef.!macro.${Case}.${Case2}.${Case3}.${Case4}.${Case5}.${CaseElse}.${Default}.${Do}.${DoUntil}.${DoWhile}.${For}.${ForEach}.${If}.${IfNot}.${MementoSection}.${MementoUnselectedSection}.${Select}.${Switch}.${Unless}.Function.PageEx.Section.SectionGroup".split(`.`)),close:p([`!endif`,`!macroend`,"${EndIf}","${EndSelect}","${EndSwitch}","${EndWhile}","${Loop}","${LoopUntil}","${LoopWhile}","${MementoSectionEnd}","${Next}","${While}",`FunctionEnd`,`PageExEnd`,`SectionEnd`,`SectionGroupEnd`]),mid:p([`!else`,`!elseif`,"${Else}","${ElseIf}","${ElseIfNot}","${ElseUnless}","${AndIf}","${AndIfNot}","${AndUnless}","${OrIf}","${OrIfNot}","${OrUnless}"]),closeAfter:p(["${Break}"])};function h(e,t){let n=0,r=[],i=[],a=M(e);t.trimEmptyLines&&(a=N(a));for(let e of a)switch(e.type){case`blank`:i.push(``);break;case`comment`:i.push(_(e,n,t));break;case`label`:i.push(v(e,n,t));break;case`instruction`:{let a=e.keyword.toLowerCase();if(m.open.has(a))i.push(O(e,n,t)),r.push(n),n++;else if(m.close.has(a))n=r.length>0?r.pop():0,i.push(O(e,n,t));else if(m.mid.has(a)){let n=r.length>0?r[r.length-1]:0;i.push(O(e,n,t))}else m.closeAfter.has(a)?(i.push(O(e,n,t)),n=r.length>0?r.pop():0):i.push(O(e,n,t));break}}return i.join(t.eol)+t.eol}function g(e,t){return(t.useTabs?` `:` `.repeat(t.indentSize)).repeat(e)}function _(e,t,n){let r=g(t,n);if(e.style===`block`){let t=e.value.split(/\r?\n/);return t.length===1?`${r}/*${e.value}*/`:t.map((e,n)=>{if(n===0)return`${r}/*${e}`;let i=e.trimStart();return n===t.length-1?`${r} ${i}*/`:`${r} ${i}`}).join(n.eol)}return`${r}${e.style===`hash`?`#`:`;`} ${e.value}`}function v(e,t,n){let r=`${g(t,n)}${e.name}:`;return e.comment&&(r+=` ${k(e.comment)}`),r}function y(e,t){if(e.startsWith(`"`)||e.startsWith(`'`)||e.startsWith("`")||e.startsWith(`$`))return e;let n=e.toLowerCase(),r=t?.get(n)??c.get(n);if(r!==void 0)return r;let i=e.indexOf(`=`);if(i>0){let t=`${n.slice(0,i+1)}`,r=l.get(t);if(r!==void 0)return`${r}${e.slice(i+1)}`}return e}function b(e){return e.flatMap(e=>e.startsWith(`"`)||e.startsWith(`'`)||e.startsWith("`")||!e.includes(`|`)||e===`|`?[e]:x(e,`|`))}function x(e,t){let n=[],r=``,i=0;for(;i<e.length;){if(e[i]===`$`&&e[i+1]===`{`){let t=e.indexOf(`}`,i+2);if(t!==-1){r+=e.slice(i,t+1),i=t+1;continue}}if(e[i]===t){r&&n.push(r),r=``,n.push(t),i++;continue}r+=e[i],i++}return r&&n.push(r),n}const S=new Set([`intop`,`intptrop`]);function C(e){return e.flatMap(e=>e.startsWith(`"`)||e.startsWith(`'`)||e.startsWith("`")||w.has(e)?[e]:E(e))}const w=new Set([`||`,`&&`,`<<`,`>>`,`+`,`-`,`*`,`/`,`%`,`|`,`&`,`^`,`~`,`!`]),T=new Set([`+`,`-`,`*`,`/`,`%`,`|`,`&`,`^`,`~`,`!`]);function E(e){let t=[],n=``,r=!0,i=0;for(;i<e.length;){if(e[i]===`$`&&e[i+1]===`{`){let t=e.indexOf(`}`,i+2);if(t!==-1){n+=e.slice(i,t+1),i=t+1,r=!1;continue}}if(i+1<e.length){let a=e.slice(i,i+2);if(w.has(a)){n&&=(t.push(n),``),t.push(a),r=!0,i+=2;continue}}let a=e[i];if(T.has(a)){if(a===`-`&&r){n+=a,i++;continue}n&&=(t.push(n),``),t.push(a),r=!0,i++;continue}n+=a,r=!1,i++}return n&&t.push(n),t.length>0?t:[e]}function D(e){let t=``;for(let n=0;n<e.length;n++){let r=e[n];r===`|`?t+=`|`:(n>0&&e[n-1]===`|`||t&&(t+=` `),t+=r)}return t}function O(e,t,n){let r=e.keyword.toLowerCase(),i=s.get(r)??e.keyword,a=f.get(r),o=(S.has(r)?C(e.args):b(e.args)).map(e=>y(e,a)),c=S.has(r)?o.join(` `):D(o),l=o.length>0?`${i} ${c}`:i,u=`${g(t,n)}${l}`;return e.comment&&(u+=` ${k(e.comment)}`),u}function k(e){return`${e.style===`hash`?`#`:`;`} ${e.value}`}function A(e){return e.type===`instruction`&&m.open.has(e.keyword.toLowerCase())}function j(e){return e.type===`instruction`&&m.close.has(e.keyword.toLowerCase())}function M(e){let t=[],n;for(let r=0;r<e.length;r++){let i=e[r],a=t.length>0&&t[t.length-1].type===`blank`;if(n&&!a&&i.type!==`blank`)if(A(i)&&!A(n)&&n.type!==`comment`)t.push({type:`blank`});else if(i.type===`comment`&&!A(n)&&n.type!==`comment`){let n=r+1;for(;n<e.length&&(e[n].type===`blank`||e[n].type===`comment`);)n++;n<e.length&&A(e[n])&&t.push({type:`blank`})}else j(n)&&!j(i)&&!A(i)&&t.push({type:`blank`});t.push(i),i.type!==`blank`&&(n=i)}return t}function N(e){let t=0;for(;t<e.length&&e[t].type===`blank`;)t++;let n=e.length-1;for(;n>=t&&e[n].type===`blank`;)n--;let r=[],i=!1;for(let a=t;a<=n;a++){let t=e[a];t.type===`blank`?i||=(r.push(t),!0):(r.push(t),i=!1)}return r}function P(n={}){let r={indentSize:2,trimEmptyLines:!0,useTabs:!0,...n};if(r.useTabs===!1&&(!r.indentSize||Number.isNaN(r.indentSize)||r.indentSize<=0))throw Error(`The indentSize option expects a positive integer`);function i(e){let t=o(e),n=s(e);return h(t,{useTabs:r.useTabs??!0,indentSize:r.indentSize??2,trimEmptyLines:r.trimEmptyLines??!0,eol:n})}function a(e){let t=i(e);return t===e?null:t}function s(n){return r.endOfLines?r.endOfLines===`crlf`?`\r
|
|
16
|
+
`,z+=2):(t=a,U===0&&J(he)),t===a&&(t=e.charAt(z),C.test(t)?z++:(t=a,U===0&&J(ge))),U--,t===a&&U===0&&J(me),t}function Q(){let e;return e=Qe(),e===a&&(e=$e()),e}function $e(){let t,n;return t=z,U++,e.length>z?(n=e.charAt(z),z++):(n=a,U===0&&J(D)),U--,n===a?t=void 0:(z=t,t=a),t}W=c();let $=W!==a&&z===e.length;function et(){throw W!==a&&z<e.length&&J(Me()),Fe(H,V<e.length?Ae(V):null,V<e.length?Pe(V,V+1):Pe(V,V))}if(t.peg$library)return{peg$result:W,peg$currPos:z,peg$FAILED:a,peg$maxFailExpected:H,peg$maxFailPos:V,peg$success:$,peg$throw:$?void 0:et};if($)return W;et()}function o(e){return a(e.replace(/^\uFEFF/,``).replace(/\\\r?\n[ \t]*/g,` `))}const s=new Map([[`!addincludedir`,`!addincludedir`],[`!addplugindir`,`!addplugindir`],[`!appendfile`,`!appendfile`],[`!appendmemfile`,`!appendmemfile`],[`!assert`,`!assert`],[`!cd`,`!cd`],[`!define`,`!define`],[`!delfile`,`!delfile`],[`!echo`,`!echo`],[`!else`,`!else`],[`!endif`,`!endif`],[`!error`,`!error`],[`!execute`,`!execute`],[`!finalize`,`!finalize`],[`!getdllversion`,`!getdllversion`],[`!gettlbversion`,`!gettlbversion`],[`!if`,`!if`],[`!ifdef`,`!ifdef`],[`!ifmacrodef`,`!ifmacrodef`],[`!ifmacrondef`,`!ifmacrondef`],[`!ifndef`,`!ifndef`],[`!include`,`!include`],[`!insertmacro`,`!insertmacro`],[`!macro`,`!macro`],[`!macroend`,`!macroend`],[`!macroundef`,`!macroundef`],[`!makensis`,`!makensis`],[`!packhdr`,`!packhdr`],[`!pragma`,`!pragma`],[`!searchparse`,`!searchparse`],[`!searchreplace`,`!searchreplace`],[`!system`,`!system`],[`!tempfile`,`!tempfile`],[`!undef`,`!undef`],[`!uninstfinalize`,`!uninstfinalize`],[`!verbose`,`!verbose`],[`!warning`,`!warning`],[`abort`,`Abort`],[`addbrandingimage`,`AddBrandingImage`],[`addsize`,`AddSize`],[`allowrootdirinstall`,`AllowRootDirInstall`],[`allowskipfiles`,`AllowSkipFiles`],[`autoclosewindow`,`AutoCloseWindow`],[`bgfont`,`BGFont`],[`bggradient`,`BGGradient`],[`brandingtext`,`BrandingText`],[`bringtofront`,`BringToFront`],[`call`,`Call`],[`callinstdll`,`CallInstDLL`],[`caption`,`Caption`],[`changeui`,`ChangeUI`],[`checkbitmap`,`CheckBitmap`],[`clearerrors`,`ClearErrors`],[`completedtext`,`CompletedText`],[`componenttext`,`ComponentText`],[`copyfiles`,`CopyFiles`],[`cpu`,`CPU`],[`crccheck`,`CRCCheck`],[`createdirectory`,`CreateDirectory`],[`createfont`,`CreateFont`],[`createshortcut`,`CreateShortcut`],[`delete`,`Delete`],[`deleteinisec`,`DeleteINISec`],[`deleteinistr`,`DeleteINIStr`],[`deleteregkey`,`DeleteRegKey`],[`deleteregvalue`,`DeleteRegValue`],[`detailprint`,`DetailPrint`],[`detailsbuttontext`,`DetailsButtonText`],[`dirshow`,`DirShow`],[`dirtext`,`DirText`],[`dirvar`,`DirVar`],[`dirverify`,`DirVerify`],[`enablewindow`,`EnableWindow`],[`enumregkey`,`EnumRegKey`],[`enumregvalue`,`EnumRegValue`],[`exch`,`Exch`],[`exec`,`Exec`],[`execshell`,`ExecShell`],[`execshellwait`,`ExecShellWait`],[`execwait`,`ExecWait`],[`expandenvstrings`,`ExpandEnvStrings`],[`file`,`File`],[`filebufsize`,`FileBufSize`],[`fileclose`,`FileClose`],[`fileerrortext`,`FileErrorText`],[`fileopen`,`FileOpen`],[`fileread`,`FileRead`],[`filereadbyte`,`FileReadByte`],[`filereadutf16le`,`FileReadUTF16LE`],[`filereadword`,`FileReadWord`],[`fileseek`,`FileSeek`],[`filewrite`,`FileWrite`],[`filewritebyte`,`FileWriteByte`],[`filewriteutf16le`,`FileWriteUTF16LE`],[`filewriteword`,`FileWriteWord`],[`findclose`,`FindClose`],[`findfirst`,`FindFirst`],[`findnext`,`FindNext`],[`findwindow`,`FindWindow`],[`flushini`,`FlushINI`],[`function`,`Function`],[`functionend`,`FunctionEnd`],[`getcurinsttype`,`GetCurInstType`],[`getcurrentaddress`,`GetCurrentAddress`],[`getdlgitem`,`GetDlgItem`],[`getdllversion`,`GetDLLVersion`],[`getdllversionlocal`,`GetDLLVersionLocal`],[`geterrorlevel`,`GetErrorLevel`],[`getfiletime`,`GetFileTime`],[`getfiletimelocal`,`GetFileTimeLocal`],[`getfullpathname`,`GetFullPathName`],[`getfunctionaddress`,`GetFunctionAddress`],[`getinstdirerror`,`GetInstDirError`],[`getknownfolderpath`,`GetKnownFolderPath`],[`getlabeladdress`,`GetLabelAddress`],[`getregview`,`GetRegView`],[`getshellvarcontext`,`GetShellVarContext`],[`gettempfilename`,`GetTempFileName`],[`getwinver`,`GetWinVer`],[`goto`,`Goto`],[`hidewindow`,`HideWindow`],[`icon`,`Icon`],[`ifabort`,`IfAbort`],[`ifaltregview`,`IfAltRegView`],[`iferrors`,`IfErrors`],[`iffileexists`,`IfFileExists`],[`ifrebootflag`,`IfRebootFlag`],[`ifrtllanguage`,`IfRtlLanguage`],[`ifshellvarcontextall`,`IfShellVarContextAll`],[`ifsilent`,`IfSilent`],[`initpluginsdir`,`InitPluginsDir`],[`installbuttontext`,`InstallButtonText`],[`installcolors`,`InstallColors`],[`installdir`,`InstallDir`],[`installdirregkey`,`InstallDirRegKey`],[`instprogressflags`,`InstProgressFlags`],[`insttype`,`InstType`],[`insttypegettext`,`InstTypeGetText`],[`insttypesettext`,`InstTypeSetText`],[`int64cmp`,`Int64Cmp`],[`int64cmpu`,`Int64CmpU`],[`int64fmt`,`Int64Fmt`],[`intcmp`,`IntCmp`],[`intcmpu`,`IntCmpU`],[`intfmt`,`IntFmt`],[`intop`,`IntOp`],[`intptrcmp`,`IntPtrCmp`],[`intptrcmpu`,`IntPtrCmpU`],[`intptrop`,`IntPtrOp`],[`iswindow`,`IsWindow`],[`langstring`,`LangString`],[`langstringup`,`LangStringUP`],[`licensebkcolor`,`LicenseBkColor`],[`licensedata`,`LicenseData`],[`licenseforceselection`,`LicenseForceSelection`],[`licenselangstring`,`LicenseLangString`],[`licensetext`,`LicenseText`],[`loadandsetimage`,`LoadAndSetImage`],[`loadlanguagefile`,`LoadLanguageFile`],[`lockwindow`,`LockWindow`],[`logset`,`LogSet`],[`logtext`,`LogText`],[`manifestappendcustomstring`,`ManifestAppendCustomString`],[`manifestdisablewindowfiltering`,`ManifestDisableWindowFiltering`],[`manifestdpiaware`,`ManifestDPIAware`],[`manifestdpiawareness`,`ManifestDPIAwareness`],[`manifestgdiscaling`,`ManifestGdiScaling`],[`manifestlongpathaware`,`ManifestLongPathAware`],[`manifestmaxversiontested`,`ManifestMaxVersionTested`],[`manifestsupportedos`,`ManifestSupportedOS`],[`messagebox`,`MessageBox`],[`miscbuttontext`,`MiscButtonText`],[`name`,`Name`],[`nop`,`Nop`],[`outfile`,`OutFile`],[`page`,`Page`],[`pagecallbacks`,`PageCallbacks`],[`pageex`,`PageEx`],[`pageexend`,`PageExEnd`],[`peaddresource`,`PEAddResource`],[`pedllcharacteristics`,`PEDllCharacteristics`],[`peremoveresource`,`PERemoveResource`],[`pesubsysver`,`PESubsysVer`],[`pop`,`Pop`],[`push`,`Push`],[`quit`,`Quit`],[`readenvstr`,`ReadEnvStr`],[`readinistr`,`ReadINIStr`],[`readmemory`,`ReadMemory`],[`readregdword`,`ReadRegDWORD`],[`readregstr`,`ReadRegStr`],[`reboot`,`Reboot`],[`regdll`,`RegDLL`],[`rename`,`Rename`],[`requestexecutionlevel`,`RequestExecutionLevel`],[`reservefile`,`ReserveFile`],[`return`,`Return`],[`rmdir`,`RMDir`],[`searchpath`,`SearchPath`],[`section`,`Section`],[`sectionend`,`SectionEnd`],[`sectiongetflags`,`SectionGetFlags`],[`sectiongetinsttypes`,`SectionGetInstTypes`],[`sectiongetsize`,`SectionGetSize`],[`sectiongettext`,`SectionGetText`],[`sectiongroup`,`SectionGroup`],[`sectiongroupend`,`SectionGroupEnd`],[`sectionin`,`SectionIn`],[`sectioninsttype`,`SectionInstType`],[`sectionsetflags`,`SectionSetFlags`],[`sectionsetinsttypes`,`SectionSetInstTypes`],[`sectionsetsize`,`SectionSetSize`],[`sectionsettext`,`SectionSetText`],[`sendmessage`,`SendMessage`],[`setautoclose`,`SetAutoClose`],[`setbrandingimage`,`SetBrandingImage`],[`setcompress`,`SetCompress`],[`setcompressionlevel`,`SetCompressionLevel`],[`setcompressor`,`SetCompressor`],[`setcompressordictsize`,`SetCompressorDictSize`],[`setctlcolors`,`SetCtlColors`],[`setcurinsttype`,`SetCurInstType`],[`setdatablockoptimize`,`SetDatablockOptimize`],[`setdatesave`,`SetDateSave`],[`setdetailsprint`,`SetDetailsPrint`],[`setdetailsview`,`SetDetailsView`],[`seterrorlevel`,`SetErrorLevel`],[`seterrors`,`SetErrors`],[`setfileattributes`,`SetFileAttributes`],[`setfont`,`SetFont`],[`setoutpath`,`SetOutPath`],[`setoverwrite`,`SetOverwrite`],[`setpluginunload`,`SetPluginUnload`],[`setrebootflag`,`SetRebootFlag`],[`setregview`,`SetRegView`],[`setshellvarcontext`,`SetShellVarContext`],[`setsilent`,`SetSilent`],[`showinstdetails`,`ShowInstDetails`],[`showuninstdetails`,`ShowUninstDetails`],[`showwindow`,`ShowWindow`],[`silentinstall`,`SilentInstall`],[`silentuninstall`,`SilentUnInstall`],[`sleep`,`Sleep`],[`spacetexts`,`SpaceTexts`],[`strcmp`,`StrCmp`],[`strcmps`,`StrCmpS`],[`strcpy`,`StrCpy`],[`strlen`,`StrLen`],[`subcaption`,`SubCaption`],[`subsection`,`SubSection`],[`subsectionend`,`SubSectionEnd`],[`target`,`Target`],[`unicode`,`Unicode`],[`uninstallbuttontext`,`UninstallButtonText`],[`uninstallcaption`,`UninstallCaption`],[`uninstallexename`,`UninstallExeName`],[`uninstallicon`,`UninstallIcon`],[`uninstallsubcaption`,`UninstallSubCaption`],[`uninstalltext`,`UninstallText`],[`uninstpage`,`UninstPage`],[`unregdll`,`UnRegDLL`],[`unsafestrcpy`,`UnsafeStrCpy`],[`var`,`Var`],[`viaddversionkey`,`VIAddVersionKey`],[`vifileversion`,`VIFileVersion`],[`viproductversion`,`VIProductVersion`],[`windowicon`,`WindowIcon`],[`writeinistr`,`WriteINIStr`],[`writeregbin`,`WriteRegBin`],[`writeregdword`,`WriteRegDWORD`],[`writeregexpandstr`,`WriteRegExpandStr`],[`writeregmultistr`,`WriteRegMultiStr`],[`writeregnone`,`WriteRegNone`],[`writeregstr`,`WriteRegStr`],[`writeuninstaller`,`WriteUninstaller`],[`xpstyle`,`XPStyle`]]),c=new Map([["${bannertrimpath}","${BannerTrimPath}"],["${dirstate}","${DirState}"],["${drivespace}","${DriveSpace}"],["${getbasename}","${GetBaseName}"],["${getdrives}","${GetDrives}"],["${getexename}","${GetExeName}"],["${getexepath}","${GetExePath}"],["${getfileattributes}","${GetFileAttributes}"],["${getfileext}","${GetFileExt}"],["${getfilename}","${GetFileName}"],["${getfileversion}","${GetFileVersion}"],["${getoptions}","${GetOptions}"],["${getoptionss}","${GetOptionsS}"],["${getparameters}","${GetParameters}"],["${getparent}","${GetParent}"],["${getroot}","${GetRoot}"],["${getsize}","${GetSize}"],["${gettime}","${GetTime}"],["${locate}","${Locate}"],["${refreshshellicons}","${RefreshShellIcons}"],["${andif}","${AndIf}"],["${andifnot}","${AndIfNot}"],["${andunless}","${AndUnless}"],["${break}","${Break}"],["${case}","${Case}"],["${caseelse}","${CaseElse}"],["${continue}","${Continue}"],["${default}","${Default}"],["${do}","${Do}"],["${dountil}","${DoUntil}"],["${dowhile}","${DoWhile}"],["${else}","${Else}"],["${elseif}","${ElseIf}"],["${elseifnot}","${ElseIfNot}"],["${elseunless}","${ElseUnless}"],["${endif}","${EndIf}"],["${endselect}","${EndSelect}"],["${endswitch}","${EndSwitch}"],["${exitdo}","${ExitDo}"],["${exitfor}","${ExitFor}"],["${exitwhile}","${ExitWhile}"],["${for}","${For}"],["${foreach}","${ForEach}"],["${if}","${If}"],["${ifcmd}","${IfCmd}"],["${ifnot}","${IfNot}"],["${ifnotthen}","${IfNotThen}"],["${ifthen}","${IfThen}"],["${loop}","${Loop}"],["${loopuntil}","${LoopUntil}"],["${loopwhile}","${LoopWhile}"],["${orif}","${OrIf}"],["${orifnot}","${OrIfNot}"],["${orunless}","${OrUnless}"],["${select}","${Select}"],["${switch}","${Switch}"],["${unless}","${Unless}"],["${while}","${While}"],["${mementosection}","${MementoSection}"],["${mementosectiondone}","${MementoSectionDone}"],["${mementosectionend}","${MementoSectionEnd}"],["${mementosectionrestore}","${MementoSectionRestore}"],["${mementosectionsave}","${MementoSectionSave}"],["${mementounselectedsection}","${MementoUnselectedSection}"],["${strcase}","${StrCase}"],["${strclb}","${StrClb}"],["${striotonsis}","${StrIOToNSIS}"],["${strloc}","${StrLoc}"],["${strnsistoio}","${StrNSISToIO}"],["${strrep}","${StrRep}"],["${strsort}","${StrSort}"],["${strstr}","${StrStr}"],["${strstradv}","${StrStrAdv}"],["${strtok}","${StrTok}"],["${strtrimnewlines}","${StrTrimNewLines}"],["${configread}","${ConfigRead}"],["${configreads}","${ConfigReadS}"],["${configwrite}","${ConfigWrite}"],["${configwrites}","${ConfigWriteS}"],["${filejoin}","${FileJoin}"],["${filereadfromend}","${FileReadFromEnd}"],["${filerecode}","${FileRecode}"],["${linefind}","${LineFind}"],["${lineread}","${LineRead}"],["${linesum}","${LineSum}"],["${textcompare}","${TextCompare}"],["${textcompares}","${TextCompareS}"],["${trimnewlines}","${TrimNewLines}"],["${atleastservicepack}","${AtLeastServicePack}"],["${atleastwin10}","${AtLeastWin10}"],["${atleastwin11}","${AtLeastWin11}"],["${atleastwin2000}","${AtLeastWin2000}"],["${atleastwin2003}","${AtLeastWin2003}"],["${atleastwin2008}","${AtLeastWin2008}"],["${atleastwin2008r2}","${AtLeastWin2008R2}"],["${atleastwin7}","${AtLeastWin7}"],["${atleastwin8}","${AtLeastWin8}"],["${atleastwin8.1}","${AtLeastWin8.1}"],["${atleastwin95}","${AtLeastWin95}"],["${atleastwin98}","${AtLeastWin98}"],["${atleastwinme}","${AtLeastWinME}"],["${atleastwinnt4}","${AtLeastWinNT4}"],["${atleastwinvista}","${AtLeastWinVista}"],["${atleastwinxp}","${AtLeastWinXP}"],["${atmostservicepack}","${AtMostServicePack}"],["${atmostwin10}","${AtMostWin10}"],["${atmostwin11}","${AtMostWin11}"],["${atmostwin2000}","${AtMostWin2000}"],["${atmostwin2003}","${AtMostWin2003}"],["${atmostwin2008}","${AtMostWin2008}"],["${atmostwin2008r2}","${AtMostWin2008R2}"],["${atmostwin2012}","${AtMostWin2012}"],["${atmostwin2012r2}","${AtMostWin2012R2}"],["${atmostwin7}","${AtMostWin7}"],["${atmostwin8}","${AtMostWin8}"],["${atmostwin8.1}","${AtMostWin8.1}"],["${atmostwin95}","${AtMostWin95}"],["${atmostwin98}","${AtMostWin98}"],["${atmostwinme}","${AtMostWinME}"],["${atmostwinnt4}","${AtMostWinNT4}"],["${atmostwinvista}","${AtMostWinVista}"],["${atmostwinxp}","${AtMostWinXP}"],["${isdomaincontroller}","${IsDomainController}"],["${isnt}","${IsNT}"],["${isserveros}","${IsServerOS}"],["${isservicepack}","${IsServicePack}"],["${iswin10}","${IsWin10}"],["${iswin11}","${IsWin11}"],["${iswin2000}","${IsWin2000}"],["${iswin2003}","${IsWin2003}"],["${iswin2008}","${IsWin2008}"],["${iswin2008r2}","${IsWin2008R2}"],["${iswin2012}","${IsWin2012}"],["${iswin2012r2}","${IsWin2012R2}"],["${iswin7}","${IsWin7}"],["${iswin8}","${IsWin8}"],["${iswin8.1}","${IsWin8.1}"],["${iswin95}","${IsWin95}"],["${iswin98}","${IsWin98}"],["${iswinme}","${IsWinME}"],["${iswinnt4}","${IsWinNT4}"],["${iswinvista}","${IsWinVista}"],["${iswinxp}","${IsWinXP}"],["${strfilter}","${StrFilter}"],["${strfilters}","${StrFilterS}"],["${versioncompare}","${VersionCompare}"],["${versionconvert}","${VersionConvert}"],["${wordadd}","${WordAdd}"],["${wordadds}","${WordAddS}"],["${wordfind}","${WordFind}"],["${wordfind2x}","${WordFind2X}"],["${wordfind2xs}","${WordFind2XS}"],["${wordfind3x}","${WordFind3X}"],["${wordfind3xs}","${WordFind3XS}"],["${wordfinds}","${WordFindS}"],["${wordinsert}","${WordInsert}"],["${wordinserts}","${WordInsertS}"],["${wordreplace}","${WordReplace}"],["${wordreplaces}","${WordReplaceS}"],["${disablex64fsredirection}","${DisableX64FSRedirection}"],["${enablex64fsredirection}","${EnableX64FSRedirection}"],["${iswow64}","${IsWow64}"],["${runningx64}","${RunningX64}"]]),l=new Map([[`/silent`,`/SILENT`],[`/filesonly`,`/FILESONLY`],[`/rebootok`,`/REBOOTOK`],[`/short`,`/SHORT`],[`/sd`,`/SD`],[`/branding`,`/BRANDING`],[`/final`,`/FINAL`],[`/solid`,`/SOLID`],[`/global`,`/GLOBAL`],[`/bom`,`/BOM`],[`/italic`,`/ITALIC`],[`/underline`,`/UNDERLINE`],[`/strike`,`/STRIKE`],[`/enablecancel`,`/ENABLECANCEL`],[`/overwrite`,`/OVERWRITE`],[`/replace`,`/REPLACE`],[`/noerrors`,`/NOERRORS`],[`/regedit5`,`/REGEDIT5`],[`/exeresource`,`/EXERESOURCE`],[`/stringid`,`/STRINGID`],[`/resizetofit`,`/RESIZETOFIT`],[`/resizetofitwidth`,`/RESIZETOFITWIDTH`],[`/resizetofitheight`,`/RESIZETOFITHEIGHT`],[`/trimleft`,`/TRIMLEFT`],[`/trimright`,`/TRIMRIGHT`],[`/trimcenter`,`/TRIMCENTER`],[`/windows`,`/windows`],[`/nonfatal`,`/NONFATAL`],[`/nocustom`,`/NOCUSTOM`],[`/uninstnocustom`,`/UNINSTNOCUSTOM`],[`/componentsonlyoncustom`,`/COMPONENTSONLYONCUSTOM`],[`/uninstcomponentsonlyoncustom`,`/UNINSTCOMPONENTSONLYONCUSTOM`],[`/fileexists`,`/FILEEXISTS`],[`/rawnl`,`/RAWNL`],[`/productversion`,`/ProductVersion`],[`/noworkingdir`,`/NoWorkingDir`],[`/r`,`/r`],[`/a`,`/a`],[`/e`,`/e`],[`/o`,`/o`],[`/x`,`/x`],[`/ifempty`,`/ifempty`],[`/ifnosubkeys`,`/ifnosubkeys`],[`/ifnovalues`,`/ifnovalues`],[`/nounload`,`/nounload`],[`/plugin`,`/plugin`],[`/ifndef`,`/ifndef`],[`/redef`,`/redef`],[`/date`,`/date`],[`/utcdate`,`/utcdate`],[`/file`,`/file`],[`/intfmt`,`/intfmt`],[`/math`,`/math`],[`/ignorecase`,`/ignorecase`],[`/packed`,`/packed`],[`/target`,`/target`]]),u=new Map([[`/lang=`,`/LANG=`],[`/timeout=`,`/TIMEOUT=`],[`/charset=`,`/CHARSET=`],[`/imgid=`,`/IMGID=`],[`/customstring=`,`/CUSTOMSTRING=`],[`/uninstcustomstring=`,`/UNINSTCUSTOMSTRING=`],[`/oname=`,`/oname=`]]),d=new Map;function f(e,t){for(let n of e){let e=n.toLowerCase(),r=d.get(e);r||(r=new Map,d.set(e,r));for(let[e,n]of t)r.set(e,n)}}f([`AllowRootDirInstall`,`AllowSkipFiles`,`AutoCloseWindow`,`CRCCheck`,`ManifestDPIAware`,`ManifestDisableWindowFiltering`,`ManifestGdiScaling`,`ManifestLongPathAware`,`SetAutoClose`,`SetDatablockOptimize`,`SetDateSave`,`SetPluginUnload`,`Unicode`,`WindowIcon`],[[`true`,`true`],[`false`,`false`]]),f([`CRCCheck`,`LogSet`,`LockWindow`,`SetCompress`,`SetDateSave`,`SetDatablockOptimize`,`SetOverwrite`,`WindowIcon`,`XPStyle`,`LicenseForceSelection`],[[`on`,`on`],[`off`,`off`]]),f([`FileOpen`],[[`r`,`r`],[`w`,`w`],[`a`,`a`]]),f([`SetCompressor`],[[`zlib`,`zlib`],[`bzip2`,`bzip2`],[`lzma`,`lzma`]]),f([`Target`],[[`x86`,`x86`],[`amd64`,`amd64`]]),f([`SetOverwrite`],[[`try`,`try`],[`ifnewer`,`ifnewer`],[`ifdiff`,`ifdiff`],[`lastused`,`lastused`]]),f([`SetCompress`],[[`auto`,`auto`],[`force`,`force`]]),f([`SilentInstall`],[[`normal`,`normal`],[`silent`,`silent`],[`silentlog`,`silentlog`]]),f([`SilentUnInstall`,`SetSilent`],[[`normal`,`normal`],[`silent`,`silent`]]),f([`ShowInstDetails`,`ShowUninstDetails`],[[`hide`,`hide`],[`show`,`show`],[`nevershow`,`nevershow`]]),f([`SetDetailsView`,`DirShow`],[[`show`,`show`],[`hide`,`hide`]]),f([`SetDetailsPrint`],[[`listonly`,`listonly`],[`textonly`,`textonly`],[`both`,`both`],[`none`,`none`],[`lastused`,`lastused`]]),f([`RequestExecutionLevel`],[[`none`,`none`],[`user`,`user`],[`highest`,`highest`],[`admin`,`admin`]]),f([`AddBrandingImage`],[[`top`,`top`],[`left`,`left`],[`bottom`,`bottom`],[`right`,`right`]]),f([`InstProgressFlags`],[[`smooth`,`smooth`],[`colored`,`colored`]]),f([`LicenseForceSelection`],[[`checkbox`,`checkbox`],[`radiobuttons`,`radiobuttons`]]),f([`SetShellVarContext`],[[`all`,`all`],[`current`,`current`]]),f([`DirVerify`],[[`auto`,`auto`],[`leave`,`leave`]]),f([`ExecShell`,`ExecShellWait`],[[`open`,`open`],[`print`,`print`]]),f([`Page`,`UninstPage`],[[`custom`,`custom`],[`license`,`license`],[`components`,`components`],[`directory`,`directory`],[`instfiles`,`instfiles`],[`uninstconfirm`,`uninstConfirm`]]),f([`SetCtlColors`],[[`transparent`,`transparent`]]),f([`LockWindow`],[[`on`,`on`],[`off`,`off`]]),f([`SetRegView`],[[`default`,`default`]]),f([`DeleteRegKey`,`DeleteRegValue`,`EnumRegKey`,`EnumRegValue`,`InstallDirRegKey`,`ReadRegDWORD`,`ReadRegStr`,`WriteRegBin`,`WriteRegDWORD`,`WriteRegExpandStr`,`WriteRegMultiStr`,`WriteRegNone`,`WriteRegStr`],[[`hkcr`,`HKCR`],[`hkcr32`,`HKCR32`],[`hkcr64`,`HKCR64`],[`hklm`,`HKLM`],[`hklm32`,`HKLM32`],[`hklm64`,`HKLM64`],[`hkcu`,`HKCU`],[`hkcu32`,`HKCU32`],[`hkcu64`,`HKCU64`],[`hku`,`HKU`],[`hkcc`,`HKCC`],[`hkdd`,`HKDD`],[`hkpd`,`HKPD`],[`shctx`,`SHCTX`]]),f([`MessageBox`],[[`mb_ok`,`MB_OK`],[`mb_okcancel`,`MB_OKCANCEL`],[`mb_abortretryignore`,`MB_ABORTRETRYIGNORE`],[`mb_retrycancel`,`MB_RETRYCANCEL`],[`mb_yesno`,`MB_YESNO`],[`mb_yesnocancel`,`MB_YESNOCANCEL`],[`mb_iconexclamation`,`MB_ICONEXCLAMATION`],[`mb_iconinformation`,`MB_ICONINFORMATION`],[`mb_iconquestion`,`MB_ICONQUESTION`],[`mb_iconstop`,`MB_ICONSTOP`],[`mb_usericon`,`MB_USERICON`],[`mb_topmost`,`MB_TOPMOST`],[`mb_setforeground`,`MB_SETFOREGROUND`],[`mb_right`,`MB_RIGHT`],[`mb_defbutton1`,`MB_DEFBUTTON1`],[`mb_defbutton2`,`MB_DEFBUTTON2`],[`mb_defbutton3`,`MB_DEFBUTTON3`],[`mb_defbutton4`,`MB_DEFBUTTON4`],[`idok`,`IDOK`],[`idcancel`,`IDCANCEL`],[`idyes`,`IDYES`],[`idno`,`IDNO`],[`idabort`,`IDABORT`],[`idretry`,`IDRETRY`],[`idignore`,`IDIGNORE`]]),f([`CreateShortcut`,`ShowWindow`],[[`sw_shownormal`,`SW_SHOWNORMAL`],[`sw_showmaximized`,`SW_SHOWMAXIMIZED`],[`sw_showminimized`,`SW_SHOWMINIMIZED`],[`sw_hide`,`SW_HIDE`],[`sw_show`,`SW_SHOW`]]),f([`CreateShortcut`],[[`alt`,`ALT`],[`control`,`CONTROL`],[`ext`,`EXT`],[`shift`,`SHIFT`]]),f([`SetFileAttributes`],[[`archive`,`ARCHIVE`],[`hidden`,`HIDDEN`],[`offline`,`OFFLINE`],[`readonly`,`READONLY`],[`system`,`SYSTEM`],[`temporary`,`TEMPORARY`]]),f([`FileSeek`],[[`set`,`SET`],[`cur`,`CUR`],[`end`,`END`]]),f([`GetWinVer`],[[`major`,`MAJOR`],[`minor`,`MINOR`],[`build`,`BUILD`],[`servicepack`,`SERVICEPACK`]]),f([`ManifestSupportedOS`],[[`winvista`,`WinVista`],[`win7`,`Win7`],[`win8`,`Win8`],[`win8.1`,`Win8.1`],[`win10`,`Win10`]]),f([`ChangeUI`],[[`dlg_id`,`dlg_id`]]);const p=d;function m(e){return new Set(e.map(e=>e.toLowerCase()))}const h={open:m([`!if`,`!ifdef`,`!ifmacrodef`,`!ifmacrondef`,`!ifndef`,`!macro`,"${Do}","${DoUntil}","${DoWhile}","${For}","${ForEach}","${If}","${IfNot}","${MementoSection}","${MementoUnselectedSection}","${Select}","${Switch}","${Unless}",`Function`,`PageEx`,`Section`,`SectionGroup`]),case:m(["${Case}","${Case2}","${Case3}","${Case4}","${Case5}","${CaseElse}","${Default}"]),close:m([`!endif`,`!macroend`,"${EndIf}","${EndSelect}","${EndSwitch}","${EndWhile}","${Loop}","${LoopUntil}","${LoopWhile}","${MementoSectionEnd}","${Next}","${While}",`FunctionEnd`,`PageExEnd`,`SectionEnd`,`SectionGroupEnd`]),mid:m([`!else`,`!elseif`,"${Else}","${ElseIf}","${ElseIfNot}","${ElseUnless}","${AndIf}","${AndIfNot}","${AndUnless}","${OrIf}","${OrIfNot}","${OrUnless}"]),closeAfter:m(["${Break}"])};function g(e,t){let n=0,r=[],i=[],a=M(e);t.trimEmptyLines&&(a=te(a));for(let e of a)switch(e.type){case`blank`:i.push(``);break;case`comment`:i.push(v(e,n,t));break;case`label`:i.push(y(e,n,t));break;case`instruction`:{let a=e.keyword.toLowerCase();if(h.open.has(a))i.push(O(e,n,t)),r.push(n),n++;else if(h.case.has(a)){let a=(r.length>0?r[r.length-1]:0)+1;i.push(O(e,a,t)),n=a+1}else if(h.close.has(a))n=r.length>0?r.pop():0,i.push(O(e,n,t));else if(h.mid.has(a)){let n=r.length>0?r[r.length-1]:0;i.push(O(e,n,t))}else h.closeAfter.has(a)?(i.push(O(e,n,t)),n=(r.length>0?r[r.length-1]:0)+1):i.push(O(e,n,t));break}}return i.join(t.eol)+t.eol}function _(e,t){return(t.useTabs?` `:` `.repeat(t.indentSize)).repeat(e)}function v(e,t,n){let r=_(t,n);if(e.style===`block`){let t=e.value.split(/\r?\n/);return t.length===1?`${r}/*${e.value}*/`:t.map((e,n)=>{if(n===0)return`${r}/*${e}`;let i=e.trimStart();return n===t.length-1?`${r} ${i}*/`:`${r} ${i}`}).join(n.eol)}return`${r}${e.style===`hash`?`#`:`;`} ${e.value}`}function y(e,t,n){let r=`${_(t,n)}${e.name}:`;return e.comment&&(r+=` ${k(e.comment)}`),r}function b(e,t){if(e.startsWith(`"`)||e.startsWith(`'`)||e.startsWith("`")||e.startsWith(`$`))return e;let n=e.toLowerCase(),r=t?.get(n)??l.get(n);if(r!==void 0)return r;let i=e.indexOf(`=`);if(i>0){let t=`${n.slice(0,i+1)}`,r=u.get(t);if(r!==void 0)return`${r}${e.slice(i+1)}`}return e}function x(e){return e.flatMap(e=>e.startsWith(`"`)||e.startsWith(`'`)||e.startsWith("`")||!e.includes(`|`)||e===`|`?[e]:S(e,`|`))}function S(e,t){let n=[],r=``,i=0;for(;i<e.length;){if(e[i]===`$`&&e[i+1]===`{`){let t=e.indexOf(`}`,i+2);if(t!==-1){r+=e.slice(i,t+1),i=t+1;continue}}if(e[i]===t){r&&n.push(r),r=``,n.push(t),i++;continue}r+=e[i],i++}return r&&n.push(r),n}const C=new Set([`intop`,`intptrop`]);function w(e){return e.flatMap(e=>e.startsWith(`"`)||e.startsWith(`'`)||e.startsWith("`")||T.has(e)?[e]:E(e))}const T=new Set([`||`,`&&`,`<<`,`>>`,`+`,`-`,`*`,`/`,`%`,`|`,`&`,`^`,`~`,`!`]),ee=new Set([`+`,`-`,`*`,`/`,`%`,`|`,`&`,`^`,`~`,`!`]);function E(e){let t=[],n=``,r=!0,i=0;for(;i<e.length;){if(e[i]===`$`&&e[i+1]===`{`){let t=e.indexOf(`}`,i+2);if(t!==-1){n+=e.slice(i,t+1),i=t+1,r=!1;continue}}if(i+1<e.length){let a=e.slice(i,i+2);if(T.has(a)){n&&=(t.push(n),``),t.push(a),r=!0,i+=2;continue}}let a=e[i];if(ee.has(a)){if(a===`-`&&r){n+=a,i++;continue}n&&=(t.push(n),``),t.push(a),r=!0,i++;continue}n+=a,r=!1,i++}return n&&t.push(n),t.length>0?t:[e]}function D(e){let t=``;for(let n=0;n<e.length;n++){let r=e[n];r===`|`?t+=`|`:(n>0&&e[n-1]===`|`||t&&(t+=` `),t+=r)}return t}function O(e,t,n){let r=e.keyword.toLowerCase(),i=s.get(r)??c.get(r)??e.keyword,a=p.get(r),o=(C.has(r)?w(e.args):x(e.args)).map(e=>b(e,a)),l=C.has(r)?o.join(` `):D(o),u=o.length>0?`${i} ${l}`:i,d=`${_(t,n)}${u}`;return e.comment&&(d+=` ${k(e.comment)}`),d}function k(e){return`${e.style===`hash`?`#`:`;`} ${e.value}`}function A(e){if(e.type!==`instruction`)return!1;let t=e.keyword.toLowerCase();return h.open.has(t)||h.case.has(t)}function j(e){return e.type===`instruction`&&h.close.has(e.keyword.toLowerCase())}function M(e){let t=[],n;for(let r=0;r<e.length;r++){let i=e[r],a=t.length>0&&t[t.length-1].type===`blank`;if(n&&!a&&i.type!==`blank`)if(A(i)&&!A(n)&&n.type!==`comment`)t.push({type:`blank`});else if(i.type===`comment`&&!A(n)&&n.type!==`comment`){let n=r+1;for(;n<e.length&&(e[n].type===`blank`||e[n].type===`comment`);)n++;n<e.length&&A(e[n])&&t.push({type:`blank`})}else j(n)&&!j(i)&&!A(i)&&t.push({type:`blank`});t.push(i),i.type!==`blank`&&(n=i)}return t}function te(e){let t=0;for(;t<e.length&&e[t].type===`blank`;)t++;let n=e.length-1;for(;n>=t&&e[n].type===`blank`;)n--;let r=[],i=!1;for(let a=t;a<=n;a++){let t=e[a];t.type===`blank`?i||=(r.push(t),!0):(r.push(t),i=!1)}return r}function N(n={}){let r={indentSize:2,trimEmptyLines:!0,useTabs:!0,...n};if(r.useTabs===!1&&(!r.indentSize||Number.isNaN(r.indentSize)||r.indentSize<=0))throw Error(`The indentSize option expects a positive integer`);function i(e){let t=o(e),n=s(e);return g(t,{useTabs:r.useTabs??!0,indentSize:r.indentSize??2,trimEmptyLines:r.trimEmptyLines??!0,eol:n})}function a(e){let t=i(e);return t===e?null:t}function s(n){return r.endOfLines?r.endOfLines===`crlf`?`\r
|
|
17
17
|
`:`
|
|
18
18
|
`:t(n)??(e()===`win32`?`\r
|
|
19
19
|
`:`
|
|
20
|
-
`)}return{format:i,check:a}}export{
|
|
20
|
+
`)}return{format:i,check:a}}export{N as createFormatter};
|
package/package.json
CHANGED
|
@@ -1,58 +1,60 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
}
|
|
2
|
+
"name": "@nsis/dent",
|
|
3
|
+
"version": "0.8.0",
|
|
4
|
+
"description": "An opinionated code formatter for NSIS scripts",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "npm run build:peggy && npm run build:lib",
|
|
8
|
+
"build:lib": "tsdown",
|
|
9
|
+
"build:peggy": "peggy --format es --dts --output src/grammar.js src/grammar.pegjs",
|
|
10
|
+
"dev": "concurrently --prefix-colors blue,green,magenta npm:dev:*",
|
|
11
|
+
"dev:lib": "npm run build:lib -- --watch",
|
|
12
|
+
"dev:peggy": "npm run build:peggy -- --watch",
|
|
13
|
+
"lint": "concurrently --prefix-colors blue,green,magenta npm:lint:*",
|
|
14
|
+
"lint:biome": "biome check",
|
|
15
|
+
"lint:e18e": "e18e-cli analyze",
|
|
16
|
+
"prepack": "npm run build",
|
|
17
|
+
"pretest": "npm run build:peggy",
|
|
18
|
+
"publish:jsr": "deno publish",
|
|
19
|
+
"publish:npm": "np",
|
|
20
|
+
"test": "uvu -r tsm tests"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist/",
|
|
24
|
+
"types/",
|
|
25
|
+
"LICENSE",
|
|
26
|
+
"package.json",
|
|
27
|
+
"README.md"
|
|
28
|
+
],
|
|
29
|
+
"type": "module",
|
|
30
|
+
"typings": "dist/dent.d.mts",
|
|
31
|
+
"exports": "./dist/dent.mjs",
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=20.0.0"
|
|
34
|
+
},
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "git+https://github.com/idleberg/node-dent.git"
|
|
38
|
+
},
|
|
39
|
+
"keywords": [
|
|
40
|
+
"nsis",
|
|
41
|
+
"formatter"
|
|
42
|
+
],
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"detect-newline": "^4.0.1"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@commitlint/cli": "^21.0.1",
|
|
48
|
+
"@commitlint/config-conventional": "^21.0.1",
|
|
49
|
+
"@idleberg/configs": "^0.4.2",
|
|
50
|
+
"@types/node": "^24.12.4",
|
|
51
|
+
"concurrently": "^9.2.1",
|
|
52
|
+
"np": "^11.2.1",
|
|
53
|
+
"peggy": "^5.1.0",
|
|
54
|
+
"tsdown": "^0.22.0",
|
|
55
|
+
"tsm": "^2.3.0",
|
|
56
|
+
"typescript": "^6.0.3",
|
|
57
|
+
"uvu": "^0.5.6"
|
|
58
|
+
},
|
|
59
|
+
"packageManager": "pnpm@11.1.2+sha512.415a1cc25974731e75455c1468371be74c5aa5fb7621b50d4056d222451609f11412f23fd602e6169f1e060466641f798597e1be961a10688836a67b16569499"
|
|
60
|
+
}
|