wuchale 0.23.2 → 0.23.3

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.
@@ -86,6 +86,7 @@ export declare class Transformer {
86
86
  visitTryStatement: (node: Estree.TryStatement) => Message[];
87
87
  visitTSAsExpression: (node: Estree.TSAsExpression) => Message[];
88
88
  visitTSTypeAssertion: (node: Estree.TSTypeAssertion) => Message[];
89
+ visitTSSatisfiesExpression: (node: Estree.TSSatisfiesExpression) => Message[];
89
90
  visitProgram: (node: Estree.Program) => Message[];
90
91
  visitWithCommentDirectives: (node: Estree.AnyNode, func: () => Message[]) => Message[];
91
92
  visitEmptyStatement: () => Message[];
@@ -678,6 +678,7 @@ export class Transformer {
678
678
  };
679
679
  visitTSAsExpression = (node) => this.visit(node.expression);
680
680
  visitTSTypeAssertion = (node) => this.visit(node.expression);
681
+ visitTSSatisfiesExpression = (node) => this.visit(node.expression);
681
682
  visitProgram = (node) => {
682
683
  this.heuristciDetails.insideProgram = true;
683
684
  const msgs = this.visitStatementsNSaveRealBodyStart(node.body);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wuchale",
3
- "version": "0.23.2",
3
+ "version": "0.23.3",
4
4
  "description": "Protobuf-like i18n from plain code",
5
5
  "scripts": {
6
6
  "dev": "tsc --watch",