@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.
Files changed (36) hide show
  1. package/README.md +8 -11
  2. package/dist/bundle-generator/index.js +25 -4
  3. package/dist/bundle-generator/index.mjs +25 -4
  4. package/dist/chunks/{bridge-BlRqsZT4.js → bridge-Clbh_xAj.js} +2 -2
  5. package/dist/chunks/browser-modular-DIOxQqhV.js +2 -0
  6. package/dist/chunks/{index-BDYQHwCF.js → index-DcxoRUBe.js} +2 -2
  7. package/dist/commands/index.js +22 -3
  8. package/dist/commands/index.mjs +22 -3
  9. package/dist/hyperfixi-classic-i18n.js +1 -1
  10. package/dist/hyperfixi-hx.js +1 -1
  11. package/dist/hyperfixi-hybrid-complete.js +1 -1
  12. package/dist/hyperfixi-minimal.js +1 -1
  13. package/dist/hyperfixi-multilingual.js +1 -1
  14. package/dist/hyperfixi-standard.js +1 -1
  15. package/dist/hyperfixi.js +1 -1
  16. package/dist/hyperfixi.mjs +1 -1
  17. package/dist/index.js +22 -3
  18. package/dist/index.min.js +1 -1
  19. package/dist/index.mjs +22 -3
  20. package/dist/lokascript-browser-classic-i18n.js +1 -1
  21. package/dist/lokascript-browser-minimal.js +1 -1
  22. package/dist/lokascript-browser-standard.js +1 -1
  23. package/dist/lokascript-browser.js +1 -1
  24. package/dist/lokascript-hybrid-complete.js +1 -1
  25. package/dist/lokascript-hybrid-hx.js +1 -1
  26. package/dist/lokascript-multilingual.js +1 -1
  27. package/dist/parser/hybrid/index.js +7 -0
  28. package/dist/parser/hybrid/index.mjs +7 -0
  29. package/dist/parser/hybrid/parser-core.js +7 -0
  30. package/dist/parser/hybrid/parser-core.mjs +7 -0
  31. package/dist/parser/hybrid/tokenizer.js +7 -0
  32. package/dist/parser/hybrid/tokenizer.mjs +7 -0
  33. package/dist/parser/hybrid-parser.js +7 -0
  34. package/dist/parser/hybrid-parser.mjs +7 -0
  35. package/package.json +1 -1
  36. 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
- targetSelector = obj.name;
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;