rbx-transformer-alpha 1.0.0 → 1.0.2

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.
@@ -65,12 +65,12 @@ function visitNode(context, node) {
65
65
  if (typescript_1.default.isStatement(node)) {
66
66
  return visitStatement(context, node);
67
67
  }
68
- else if (typescript_1.default.isExpression(node)) {
69
- return visitExpression(context, node);
70
- }
71
68
  else if (typescript_1.default.isCallExpression(node)) {
72
69
  return visitCallExpression(context, node);
73
70
  }
71
+ else if (typescript_1.default.isExpression(node)) {
72
+ return visitExpression(context, node);
73
+ }
74
74
  // We encountered a node that we don't handle above,
75
75
  // but we should keep iterating the AST in case we find something we want to transform.
76
76
  return context.transform(node);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rbx-transformer-alpha",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "author": "Konma",
5
5
  "license": "MIT",
6
6
  "description": "",