triangulum 0.10.2-x86_64-linux-gnu → 0.11.1-x86_64-linux-gnu

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 73b8c6529d781756348d684420d1cfe202fd82a3f349e9ce0a3eedf547e6d87e
4
- data.tar.gz: 58ebf6f537727c83e17973969351a58a7f7bb5b3a4e0c24e7249cc1e2f2f1358
3
+ metadata.gz: 5b4636f528cb84414047c762cbe333dc930a9f9ff86c3c5fbbb60a3f94679281
4
+ data.tar.gz: 6b957658c4695ae9ad695fcc42720ab349288c87f87fd7da1ebbe9047bdf5ff9
5
5
  SHA512:
6
- metadata.gz: 19a33d15402421afb0eb62597b6bf773b75561d73bba6d4bfbe842c45f47aa9c6ceae065208b46ff577b5b5beb8a27f86a8402b9f5628430976ec95516fec89c
7
- data.tar.gz: 57a83153d9ebdc748aad48fa2854e5f3939721d86de5eef6e924953925369e3e95ed37032724ea3c8383079f4e86df97afbad5936f372a7dc39f12e5d48f755a
6
+ metadata.gz: 25d3a127bb4350e19f368b06dba073061ddef40e5db49b26088876d8b8a8e7412411f15507d948b3a0353ca9de4017fbc676b09bdecbe362da1a4c6b94445426
7
+ data.tar.gz: 7c29ffc253faed45370649da6a8c07f40fd57a3294aa06ac0364944cc2d92cc8ed5aedf753ed48f655c0e40eef103413044249a88d6762cc15b21f4da5831d2b
@@ -174467,6 +174467,12 @@ var x2 = `
174467
174467
  interface NewableFunction extends Function {}
174468
174468
  interface IArguments { }
174469
174469
  interface RegExp { }
174470
+
174471
+ declare namespace Utils {
174472
+ type ReturnType<T extends (...args: any) => any> = T extends (...args: any) => infer R ? R : any;
174473
+ }
174474
+
174475
+ import ReturnType = Utils.ReturnType;
174470
174476
  `;
174471
174477
  function S2(t3, n3) {
174472
174478
  let r3 = /* @__PURE__ */ new Map;
@@ -174499,7 +174505,7 @@ function E2(e6, t3, n3, r3 = false) {
174499
174505
  let t6 = i4;
174500
174506
  if (!t6.nodeFunctionId)
174501
174507
  return `/* @pos ${e7} ${n5} */ undefined`;
174502
- let r4 = t6.inputIndex === undefined ? `node_${T2(t6.nodeFunctionId)}` : `p_${T2(t6.nodeFunctionId)}_${t6.parameterIndex}[${t6.inputIndex}]`;
174508
+ let r4 = typeof t6.inputIndex == "number" ? `p_${T2(t6.nodeFunctionId)}_${t6.parameterIndex}[${t6.inputIndex}]` : `node_${T2(t6.nodeFunctionId)}`;
174503
174509
  return t6.referencePath?.forEach((e8) => {
174504
174510
  r4 += `?.${e8.path}`;
174505
174511
  }), `/* @pos ${e7} ${n5} */ ${r4}`;
@@ -174528,7 +174534,7 @@ function E2(e6, t3, n3, r3 = false) {
174528
174534
  let t5 = o5;
174529
174535
  if (!t5.nodeFunctionId)
174530
174536
  return `/* @pos ${e7} ${a4} */ undefined`;
174531
- let n4 = t5.inputIndex === undefined ? `node_${T2(t5.nodeFunctionId)}` : `p_${T2(t5.nodeFunctionId)}_${t5.parameterIndex}[${t5.inputIndex}]`;
174537
+ let n4 = typeof t5.inputIndex == "number" ? `p_${T2(t5.nodeFunctionId)}_${t5.parameterIndex}[${t5.inputIndex}]` : `node_${T2(t5.nodeFunctionId)}`;
174532
174538
  return t5.referencePath?.forEach((e8) => {
174533
174539
  n4 += `?.${e8.path}`;
174534
174540
  }), `/* @pos ${e7} ${a4} */ ${n4}`;
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Triangulum
4
- VERSION = '0.10.2'
4
+ VERSION = '0.11.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: triangulum
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.2
4
+ version: 0.11.1
5
5
  platform: x86_64-linux-gnu
6
6
  authors:
7
7
  - Niklas van Schrick