adding component locations
Test / build (push) Failing after 22s
Build / build (push) Successful in 37s

This commit is contained in:
2026-06-05 01:21:43 +02:00
parent 8677e8a683
commit ee5a400010
5 changed files with 134 additions and 32 deletions
+1
View File
@@ -56,6 +56,7 @@ pub inline fn nextAs(self: *Self, comptime E: type) RuntimeError!E {
if (self.next_force_skip) |skip_index| {
if (self.index == skip_index) {
_ = self.skip();
self.next_force_skip = null;
}
}
return self.nextAsOrNull(E) orelse return RuntimeError.InvalidSpirV;