ripple 0.2.8 → 0.2.9

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Ripple is a TypeScript UI framework for the web",
4
4
  "license": "MIT",
5
5
  "author": "Dominic Gannaway",
6
- "version": "0.2.8",
6
+ "version": "0.2.9",
7
7
  "type": "module",
8
8
  "module": "src/runtime/index.js",
9
9
  "main": "src/runtime/index.js",
@@ -391,11 +391,11 @@ function RipplePlugin(config) {
391
391
  } else {
392
392
  this.parseTemplateBody(element.children);
393
393
  }
394
- const tok = this.acornTypeScript.tokContexts;
394
+ const tokContexts = this.acornTypeScript.tokContexts;
395
395
 
396
396
  const curContext = this.curContext();
397
397
 
398
- if (curContext === tok.tc_expr) {
398
+ if (curContext === tokContexts.tc_expr) {
399
399
  this.context.pop();
400
400
  }
401
401
  }