mol_dump_lib 0.0.270 → 0.0.271

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/web.js CHANGED
@@ -4771,9 +4771,13 @@ var $;
4771
4771
  return exists;
4772
4772
  if (next === exists)
4773
4773
  return exists;
4774
- if (next)
4774
+ if (next) {
4775
4775
  this.parent().exists(true);
4776
- this.ensure();
4776
+ this.ensure();
4777
+ }
4778
+ else {
4779
+ this.drop();
4780
+ }
4777
4781
  this.reset();
4778
4782
  return next;
4779
4783
  }
@@ -5070,6 +5074,9 @@ var $;
5070
5074
  ensure() {
5071
5075
  throw new Error('$mol_file_web.ensure() not implemented');
5072
5076
  }
5077
+ drop() {
5078
+ throw new Error('$mol_file_web.drop() not implemented');
5079
+ }
5073
5080
  sub() {
5074
5081
  throw new Error('$mol_file_web.sub() not implemented');
5075
5082
  }