@hyperfixi/core 2.3.0 → 2.3.1
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 +8 -11
- package/dist/bundle-generator/index.js +25 -4
- package/dist/bundle-generator/index.mjs +25 -4
- package/dist/chunks/{bridge-BlRqsZT4.js → bridge-Clbh_xAj.js} +2 -2
- package/dist/chunks/browser-modular-DIOxQqhV.js +2 -0
- package/dist/chunks/{index-BDYQHwCF.js → index-DcxoRUBe.js} +2 -2
- package/dist/commands/index.js +22 -3
- package/dist/commands/index.mjs +22 -3
- package/dist/hyperfixi-classic-i18n.js +1 -1
- package/dist/hyperfixi-hx.js +1 -1
- package/dist/hyperfixi-hybrid-complete.js +1 -1
- package/dist/hyperfixi-minimal.js +1 -1
- package/dist/hyperfixi-multilingual.js +1 -1
- package/dist/hyperfixi-standard.js +1 -1
- package/dist/hyperfixi.js +1 -1
- package/dist/hyperfixi.mjs +1 -1
- package/dist/index.js +22 -3
- package/dist/index.min.js +1 -1
- package/dist/index.mjs +22 -3
- package/dist/lokascript-browser-classic-i18n.js +1 -1
- package/dist/lokascript-browser-minimal.js +1 -1
- package/dist/lokascript-browser-standard.js +1 -1
- package/dist/lokascript-browser.js +1 -1
- package/dist/lokascript-hybrid-complete.js +1 -1
- package/dist/lokascript-hybrid-hx.js +1 -1
- package/dist/lokascript-multilingual.js +1 -1
- package/dist/parser/hybrid/index.js +7 -0
- package/dist/parser/hybrid/index.mjs +7 -0
- package/dist/parser/hybrid/parser-core.js +7 -0
- package/dist/parser/hybrid/parser-core.mjs +7 -0
- package/dist/parser/hybrid/tokenizer.js +7 -0
- package/dist/parser/hybrid/tokenizer.mjs +7 -0
- package/dist/parser/hybrid-parser.js +7 -0
- package/dist/parser/hybrid-parser.mjs +7 -0
- package/package.json +1 -1
- package/dist/chunks/browser-modular-AbV0Ql4i.js +0 -2
package/dist/index.mjs
CHANGED
|
@@ -17432,11 +17432,30 @@ let PutCommand = (() => {
|
|
|
17432
17432
|
const obj = targetArg.object, prop = targetArg.property;
|
|
17433
17433
|
if (obj?.type === 'selector')
|
|
17434
17434
|
targetSelector = obj.value;
|
|
17435
|
-
else if (obj?.type === 'identifier')
|
|
17436
|
-
|
|
17435
|
+
else if (obj?.type === 'identifier') {
|
|
17436
|
+
const objName = obj.name;
|
|
17437
|
+
if (objName === 'my' || objName === 'me' || objName === 'I') {
|
|
17438
|
+
if (context.me && prop?.name) {
|
|
17439
|
+
return {
|
|
17440
|
+
value,
|
|
17441
|
+
targets: [context.me],
|
|
17442
|
+
position: 'replace',
|
|
17443
|
+
memberPath: prop.name,
|
|
17444
|
+
};
|
|
17445
|
+
}
|
|
17446
|
+
}
|
|
17447
|
+
else if (objName === 'its' || objName === 'it') {
|
|
17448
|
+
const ev = await evaluator.evaluate(targetArg, context);
|
|
17449
|
+
if (typeof ev === 'string')
|
|
17450
|
+
targetSelector = ev;
|
|
17451
|
+
}
|
|
17452
|
+
else {
|
|
17453
|
+
targetSelector = objName;
|
|
17454
|
+
}
|
|
17455
|
+
}
|
|
17437
17456
|
if (targetSelector && prop?.name)
|
|
17438
17457
|
memberPath = prop.name;
|
|
17439
|
-
else {
|
|
17458
|
+
else if (!targetSelector && !memberPath) {
|
|
17440
17459
|
const ev = await evaluator.evaluate(targetArg, context);
|
|
17441
17460
|
if (typeof ev === 'string')
|
|
17442
17461
|
targetSelector = ev;
|