flow-parser 0.332.0 → 0.333.0

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.
@@ -1149,7 +1149,7 @@ module.exports = [function () {
1149
1149
  return {
1150
1150
  type: 'ImportType',
1151
1151
  loc: this.addEmptyLoc(),
1152
- argument: this.deserializeNode()
1152
+ source: this.deserializeNode()
1153
1153
  };
1154
1154
  }, function () {
1155
1155
  return {
@@ -1198,6 +1198,7 @@ module.exports = [function () {
1198
1198
  node.proto = this.deserializeBoolean();
1199
1199
  node.variance = this.deserializeNode();
1200
1200
  node.kind = this.deserializeString();
1201
+ if (this.deserializeBoolean()) node['computed'] = true;
1201
1202
  if (this.deserializeBoolean()) node['abstract'] = true;
1202
1203
  if (this.deserializeBoolean()) node['override'] = true;
1203
1204
  {