triangulum 0.11.0 → 0.12.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dcfb71f970e88d04da9e6248f5369dc9bd69dc99b4b5e11baec242eaf1f1836f
4
- data.tar.gz: 3e88e51ebb7835dce330abe697d4db9639fd7f9664bba2a169b0711f892d61d1
3
+ metadata.gz: 0fee54cd41aba8a26daceb5d2f0a6b73233bcb7a4250fc1a6129f9eda0955de0
4
+ data.tar.gz: 454bb6b7588b2706df9312a1741959de51ad267d5c0c92078efafa133df38165
5
5
  SHA512:
6
- metadata.gz: 9b5f9bb3a8de552b21bfeb026bba4a4b01d44453434e7d815286fa92514c52040ff136a1a9b17f96beec6eaab4a077f5504bfcdc26310fb57ae482fd3f9b6392
7
- data.tar.gz: 9b51f5fdf4a67dcb18dd7d9c9b17067a07c486cf2ac242c496ec7bec90bd8822196a32f9e763df552b5d10f607ed1477eb164a9c5becd32fa8537c8dd07cebe2
6
+ metadata.gz: 6808edb628a1ca7aabd86e58d9170174f0553bcd9a2c49f6ed0d9711e54c85b6690c09019f75b7c75c4c2b67f6cbad2ec9fd94bac0321d15e56bd9cc67e48414
7
+ data.tar.gz: a1c3b0ae07761ea79d7184dfa362e42e374e499fcce5cda0b14a4750efad8a2c78b68a25a77382191c33db21d8cdcac4bc4e06a4f5180675cf10bccb2b2d1097
@@ -174505,7 +174505,7 @@ function E2(e6, t3, n3, r3 = false) {
174505
174505
  let t6 = i4;
174506
174506
  if (!t6.nodeFunctionId)
174507
174507
  return `/* @pos ${e7} ${n5} */ undefined`;
174508
- 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)}`;
174509
174509
  return t6.referencePath?.forEach((e8) => {
174510
174510
  r4 += `?.${e8.path}`;
174511
174511
  }), `/* @pos ${e7} ${n5} */ ${r4}`;
@@ -174534,7 +174534,7 @@ function E2(e6, t3, n3, r3 = false) {
174534
174534
  let t5 = o5;
174535
174535
  if (!t5.nodeFunctionId)
174536
174536
  return `/* @pos ${e7} ${a4} */ undefined`;
174537
- 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)}`;
174538
174538
  return t5.referencePath?.forEach((e8) => {
174539
174539
  n4 += `?.${e8.path}`;
174540
174540
  }), `/* @pos ${e7} ${a4} */ ${n4}`;
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Triangulum
4
- VERSION = '0.11.0'
4
+ VERSION = '0.12.0'
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.11.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Niklas van Schrick