nirguna 1.0.7 → 1.0.8

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/ChangeLog CHANGED
@@ -1,3 +1,8 @@
1
+ 2026.02.16, v1.0.8
2
+
3
+ feature:
4
+ - 2fe4f82 nirguna: printer-fasm: maybeVisitor
5
+
1
6
  2026.02.13, v1.0.7
2
7
 
3
8
  fix:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nirguna",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Compile JavaScript to WASM and FASM",
@@ -1,4 +1,4 @@
1
- import {visitors} from '@putout/printer';
1
+ import {visitors, maybeVisitor} from '@putout/printer';
2
2
  import {types} from '@putout/babel';
3
3
 
4
4
  const {isMemberExpression} = types;
@@ -43,5 +43,5 @@ export const AssignmentExpression = (path, printer, semantics) => {
43
43
  return;
44
44
  }
45
45
 
46
- return visitors.AssignmentExpression(path, printer, semantics);
46
+ return maybeVisitor(visitors.AssignmentExpression, path, printer, semantics);
47
47
  };