kumi 0.0.28 → 0.0.29

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: 644df492ff48a0f3490909636f678554b93cfea464e7c133366609743d6ac8a8
4
- data.tar.gz: df9b82c1e0e29466e033fac43dafda4ad990402d005d606acdf41133c3860f25
3
+ metadata.gz: 349c4ee5dcfa90fbdba070f6dae7a8beadc85b418294a4a5621257580f2e2fdb
4
+ data.tar.gz: b4a5da662615caf4a0d85bed9dfeee4d7cfde6c30eb48c860c026843b23edafd
5
5
  SHA512:
6
- metadata.gz: 71555d229915f8a71d47fe719f976c3d0e212576f1bbf5061463ede08c0e49e7126b338646036eb2573e3f1492297da8e42bc40331ce02289d4112b9d71be6f2
7
- data.tar.gz: '09cd854fca02d7e15f52ea51f7153e9105075d4509b19219cd4cc0924c25048126df97de350e06d845ab6d65c5027e23e710ef2cf0a1ca59922fea3cefb45a3a'
6
+ metadata.gz: 928c8e662139cb9fa5ecc74da52bc83e47850479c6362ccb87f25d751c5c7db73d98daced9525c8c0089f1dc145d7fd1bac509328b64720631c0320ca8b528e1
7
+ data.tar.gz: 73569e85aade8cd602eb11f54c146fd343440ce75bc8ec11fb3d1e5f4fd03076474a99d315e0d2ce612b88c901aa434d2a22e57fb1f164903dfcdbf8477bc236
data/CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
1
  ## [Unreleased]
2
+ ## [0.0.29] – 2025-10-21
3
+ ### Changed
4
+ - Tests and development cleanup
5
+
2
6
 
3
7
  ## [0.0.28] – 2025-10-20
4
8
  ### Changed
data/lib/kumi/analyzer.rb CHANGED
@@ -14,16 +14,7 @@ module Kumi
14
14
  Passes::SemanticConstraintValidator, # 5. Validates DSL semantic constraints at AST level.
15
15
  Passes::DependencyResolver, # 6. Builds the dependency graph with conditional dependencies.
16
16
  Passes::Toposorter, # 7. Creates the final evaluation order, allowing safe cycles.
17
- # Passes::BroadcastDetector, # 8. Detects which operations should be broadcast over arrays.
18
- # Passes::TypeInferencerPass, # 9. Infers types for all declarations (uses vectorization metadata).
19
- # Passes::TypeChecker, # 10. Validates types using inferred information.
20
- Passes::InputAccessPlannerPass # 11. Plans access strategies for input fields.
21
- # Passes::ScopeResolutionPass, # 12. Plans execution scope and lifting needs for declarations.
22
- # Passes::JoinReducePlanningPass, # 13. Plans join/reduce operations (Generates IR Structs)
23
- # Passes::LowerToIRPass, # 14. Lowers the schema to IR (Generates IR Structs)
24
- # Passes::LoadInputCSE, # 15. Eliminates redundant load_input operations
25
- # Passes::IRDependencyPass, # 16. Extracts IR-level dependencies for VM execution optimization
26
- # Passes::IRExecutionSchedulePass # 17. Builds a precomputed execution schedule.
17
+ Passes::InputAccessPlannerPass # 8. Plans access strategies for input fields.
27
18
  ].freeze
28
19
 
29
20
  # Pipeline passes for the determinisitic NAST->LIR approach
data/lib/kumi/schema.rb CHANGED
@@ -11,6 +11,7 @@ module Kumi
11
11
  module Schema
12
12
  # The `__syntax_tree__` is available on the class for introspection.
13
13
  attr_reader :__kumi_syntax_tree__, :__kumi_compiled_module__
14
+ alias_method :__syntax_tree__, :__kumi_syntax_tree__
14
15
 
15
16
  def build_syntax_tree(&)
16
17
  @__kumi_syntax_tree__ = Kumi::Core::RubyParser::Dsl.build_syntax_tree(&)
data/lib/kumi/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Kumi
4
- VERSION = "0.0.28"
4
+ VERSION = "0.0.29"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kumi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.28
4
+ version: 0.0.29
5
5
  platform: ruby
6
6
  authors:
7
7
  - André Muta