pareto-core 0.1.65 → 0.1.67

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.
@@ -1,6 +1,6 @@
1
1
  import { Abort } from "../abort";
2
2
  import { Iterator } from "../iterator";
3
3
  export type Production<Result, Error, Iterator_Item, End_Info> = (iterator: Iterator<Iterator_Item, End_Info>, abort: Abort<Error>) => Result;
4
- export type Production_With_Parameter<Result, Error, Iterator_Item, Parameter, End_Info> = (iterator: Iterator<Iterator_Item, End_Info>, abort: Abort<Error>, $p: Parameter) => Result;
4
+ export type Production_With_Parameter<Result, Error, Iterator_Item, End_Info, Parameter> = (iterator: Iterator<Iterator_Item, End_Info>, abort: Abort<Error>, $p: Parameter) => Result;
5
5
  export type Production_Without_Error<Result, Iterator_Item, End_Info> = (iterator: Iterator<Iterator_Item, End_Info>) => Result;
6
- export type Production_Without_Error_With_Parameter<Result, Iterator_Item, Parameter, End_Info> = (iterator: Iterator<Iterator_Item, End_Info>, $p: Parameter) => Result;
6
+ export type Production_Without_Error_With_Parameter<Result, Iterator_Item, End_Info, Parameter> = (iterator: Iterator<Iterator_Item, End_Info>, $p: Parameter) => Result;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pareto-core",
3
- "version": "0.1.65",
3
+ "version": "0.1.67",
4
4
  "license": "ISC",
5
5
  "description": "the core language constructs for the Pareto programming language (in TypeScript)",
6
6
  "author": "Corno",