pyret-npm 0.0.69 → 0.0.70

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pyret-npm",
3
- "version": "0.0.69",
3
+ "version": "0.0.70",
4
4
  "description": "The CLI for the Pyret programming language",
5
5
  "files": [
6
6
  "pyret.js",
@@ -174734,7 +174734,7 @@ return {"staticModules":{"builtin://global":({
174734
174734
  'row': runtime.makeMethodN(function(self, ...args) {
174735
174735
  // NOTE: Deliberately no arity check
174736
174736
  if(headers.length !== args.length) {
174737
- throw runtime.ffi.throwRowLengthMismatch(makeTable(headers, []), args);
174737
+ throw runtime.ffi.throwRowLengthMismatch(headers, args);
174738
174738
  }
174739
174739
  return makeRow({ headerIndex: headerIndex }, args);
174740
174740
  }),
@@ -837,7 +837,7 @@
837
837
  'row': runtime.makeMethodN(function(self, ...args) {
838
838
  // NOTE: Deliberately no arity check
839
839
  if(headers.length !== args.length) {
840
- throw runtime.ffi.throwRowLengthMismatch(makeTable(headers, []), args);
840
+ throw runtime.ffi.throwRowLengthMismatch(headers, args);
841
841
  }
842
842
  return makeRow({ headerIndex: headerIndex }, args);
843
843
  }),
@@ -837,7 +837,7 @@
837
837
  'row': runtime.makeMethodN(function(self, ...args) {
838
838
  // NOTE: Deliberately no arity check
839
839
  if(headers.length !== args.length) {
840
- throw runtime.ffi.throwRowLengthMismatch(makeTable(headers, []), args);
840
+ throw runtime.ffi.throwRowLengthMismatch(headers, args);
841
841
  }
842
842
  return makeRow({ headerIndex: headerIndex }, args);
843
843
  }),
@@ -837,7 +837,7 @@
837
837
  'row': runtime.makeMethodN(function(self, ...args) {
838
838
  // NOTE: Deliberately no arity check
839
839
  if(headers.length !== args.length) {
840
- throw runtime.ffi.throwRowLengthMismatch(makeTable(headers, []), args);
840
+ throw runtime.ffi.throwRowLengthMismatch(headers, args);
841
841
  }
842
842
  return makeRow({ headerIndex: headerIndex }, args);
843
843
  }),
@@ -174700,7 +174700,7 @@ return {"staticModules":{"builtin://global":({
174700
174700
  'row': runtime.makeMethodN(function(self, ...args) {
174701
174701
  // NOTE: Deliberately no arity check
174702
174702
  if(headers.length !== args.length) {
174703
- throw runtime.ffi.throwRowLengthMismatch(makeTable(headers, []), args);
174703
+ throw runtime.ffi.throwRowLengthMismatch(headers, args);
174704
174704
  }
174705
174705
  return makeRow({ headerIndex: headerIndex }, args);
174706
174706
  }),