rbs 4.0.3 → 4.1.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.
Files changed (153) hide show
  1. checksums.yaml +4 -4
  2. data/.dockerignore +37 -0
  3. data/.github/workflows/bundle-update.yml +1 -1
  4. data/.github/workflows/c-check.yml +14 -6
  5. data/.github/workflows/comments.yml +2 -2
  6. data/.github/workflows/dependabot.yml +2 -2
  7. data/.github/workflows/jruby.yml +79 -0
  8. data/.github/workflows/milestone.yml +13 -2
  9. data/.github/workflows/ruby.yml +43 -3
  10. data/.github/workflows/rust.yml +13 -10
  11. data/.github/workflows/truffleruby.yml +54 -0
  12. data/.github/workflows/typecheck.yml +5 -2
  13. data/.github/workflows/wasm.yml +55 -0
  14. data/.github/workflows/windows.yml +5 -2
  15. data/.gitignore +8 -0
  16. data/CHANGELOG.md +84 -4
  17. data/Dockerfile.jruby +53 -0
  18. data/README.md +3 -3
  19. data/Rakefile +105 -3
  20. data/Steepfile +9 -0
  21. data/config.yml +24 -0
  22. data/core/array.rbs +243 -180
  23. data/core/builtin.rbs +7 -6
  24. data/core/class.rbs +5 -3
  25. data/core/enumerable.rbs +109 -109
  26. data/core/enumerator/product.rbs +5 -5
  27. data/core/enumerator.rbs +28 -28
  28. data/core/file.rbs +24 -1018
  29. data/core/file_constants.rbs +463 -0
  30. data/core/file_stat.rbs +534 -0
  31. data/core/float.rbs +0 -24
  32. data/core/hash.rbs +117 -101
  33. data/core/integer.rbs +21 -58
  34. data/core/io.rbs +25 -7
  35. data/core/kernel.rbs +26 -11
  36. data/core/match_data.rbs +1 -1
  37. data/core/module.rbs +88 -74
  38. data/core/numeric.rbs +3 -0
  39. data/core/object_space/weak_key_map.rbs +7 -7
  40. data/core/pathname.rbs +0 -10
  41. data/core/ractor.rbs +0 -10
  42. data/core/range.rbs +23 -23
  43. data/core/rbs/ops.rbs +154 -0
  44. data/core/rbs/unnamed/argf.rbs +3 -3
  45. data/core/ruby_vm.rbs +40 -0
  46. data/core/rubygems/errors.rbs +4 -1
  47. data/core/rubygems/requirement.rbs +0 -10
  48. data/core/rubygems/rubygems.rbs +4 -1
  49. data/core/rubygems/specification.rbs +8 -0
  50. data/core/rubygems/version.rbs +0 -160
  51. data/core/set.rbs +3 -3
  52. data/core/struct.rbs +16 -16
  53. data/core/thread.rbs +9 -14
  54. data/docs/CONTRIBUTING.md +2 -1
  55. data/docs/inline.md +65 -7
  56. data/docs/rbs_by_example.md +20 -20
  57. data/docs/release.md +69 -0
  58. data/docs/syntax.md +2 -2
  59. data/docs/wasm_serialization.md +80 -0
  60. data/ext/rbs_extension/ast_translation.c +1298 -956
  61. data/ext/rbs_extension/ast_translation.h +4 -0
  62. data/ext/rbs_extension/class_constants.c +2 -0
  63. data/ext/rbs_extension/class_constants.h +1 -0
  64. data/ext/rbs_extension/extconf.rb +1 -0
  65. data/ext/rbs_extension/legacy_location.c +11 -6
  66. data/ext/rbs_extension/main.c +139 -4
  67. data/include/rbs/ast.h +323 -298
  68. data/include/rbs/defines.h +13 -0
  69. data/include/rbs/lexer.h +1 -0
  70. data/include/rbs/serialize.h +39 -0
  71. data/lib/rbs/annotate/rdoc_annotator.rb +27 -31
  72. data/lib/rbs/ast/ruby/annotations.rb +42 -0
  73. data/lib/rbs/ast/ruby/comment_block.rb +6 -4
  74. data/lib/rbs/ast/ruby/declarations.rb +11 -1
  75. data/lib/rbs/ast/ruby/helpers/location_helper.rb +1 -1
  76. data/lib/rbs/ast/ruby/members.rb +40 -1
  77. data/lib/rbs/buffer.rb +48 -11
  78. data/lib/rbs/cli.rb +3 -5
  79. data/lib/rbs/collection/config/lockfile_generator.rb +14 -1
  80. data/lib/rbs/collection/sources/git.rb +6 -0
  81. data/lib/rbs/definition_builder/method_builder.rb +12 -6
  82. data/lib/rbs/environment.rb +10 -3
  83. data/lib/rbs/inline_parser.rb +54 -28
  84. data/lib/rbs/namespace.rb +47 -11
  85. data/lib/rbs/parser_aux.rb +4 -2
  86. data/lib/rbs/prototype/rbi.rb +193 -25
  87. data/lib/rbs/prototype/runtime.rb +2 -0
  88. data/lib/rbs/resolver/type_name_resolver.rb +12 -14
  89. data/lib/rbs/rewriter.rb +70 -0
  90. data/lib/rbs/test/type_check.rb +6 -1
  91. data/lib/rbs/type_name.rb +33 -13
  92. data/lib/rbs/unit_test/type_assertions.rb +9 -0
  93. data/lib/rbs/version.rb +1 -1
  94. data/lib/rbs/wasm/deserializer.rb +213 -0
  95. data/lib/rbs/wasm/location.rb +61 -0
  96. data/lib/rbs/wasm/parser.rb +137 -0
  97. data/lib/rbs/wasm/runtime.rb +196 -0
  98. data/lib/rbs/wasm/serialization_schema.rb +110 -0
  99. data/lib/rbs.rb +14 -2
  100. data/lib/rbs_jars.rb +39 -0
  101. data/lib/rdoc_plugin/parser.rb +5 -0
  102. data/rbs.gemspec +32 -2
  103. data/sig/annotate/rdoc_annotater.rbs +12 -9
  104. data/sig/ast/ruby/annotations.rbs +49 -0
  105. data/sig/ast/ruby/members.rbs +21 -1
  106. data/sig/buffer.rbs +19 -1
  107. data/sig/collection/config/lockfile_generator.rbs +2 -0
  108. data/sig/inline_parser.rbs +2 -0
  109. data/sig/manifest.yaml +0 -1
  110. data/sig/namespace.rbs +20 -0
  111. data/sig/parser.rbs +10 -0
  112. data/sig/prototype/rbi.rbs +33 -4
  113. data/sig/resolver/type_name_resolver.rbs +2 -4
  114. data/sig/rewriter.rbs +45 -0
  115. data/sig/typename.rbs +15 -0
  116. data/sig/unit_test/type_assertions.rbs +4 -0
  117. data/sig/wasm/deserializer.rbs +66 -0
  118. data/sig/wasm/serialization_schema.rbs +13 -0
  119. data/src/ast.c +186 -162
  120. data/src/lexer.c +220 -193
  121. data/src/lexer.re +2 -1
  122. data/src/lexstate.c +10 -1
  123. data/src/parser.c +55 -5
  124. data/src/serialize.c +958 -0
  125. data/src/util/rbs_allocator.c +14 -8
  126. data/stdlib/abbrev/0/array.rbs +1 -1
  127. data/stdlib/csv/0/csv.rbs +5 -5
  128. data/stdlib/delegate/0/delegator.rbs +2 -1
  129. data/stdlib/digest/0/digest.rbs +11 -5
  130. data/stdlib/erb/0/erb.rbs +1 -1
  131. data/stdlib/etc/0/etc.rbs +18 -4
  132. data/stdlib/fileutils/0/fileutils.rbs +21 -21
  133. data/stdlib/ipaddr/0/ipaddr.rbs +0 -5
  134. data/stdlib/json/0/json.rbs +6 -6
  135. data/stdlib/monitor/0/monitor.rbs +2 -2
  136. data/stdlib/openssl/0/openssl.rbs +46 -40
  137. data/stdlib/resolv/0/resolv.rbs +1 -1
  138. data/stdlib/shellwords/0/shellwords.rbs +1 -1
  139. data/stdlib/stringio/0/stringio.rbs +32 -10
  140. data/stdlib/strscan/0/string_scanner.rbs +74 -55
  141. data/stdlib/tempfile/0/manifest.yaml +3 -0
  142. data/stdlib/timeout/0/timeout.rbs +0 -5
  143. data/stdlib/tsort/0/cyclic.rbs +1 -1
  144. data/stdlib/tsort/0/interfaces.rbs +8 -8
  145. data/stdlib/tsort/0/tsort.rbs +9 -9
  146. data/stdlib/uri/0/generic.rbs +0 -5
  147. data/stdlib/zlib/0/gzip_reader.rbs +2 -2
  148. data/stdlib/zlib/0/zstream.rbs +0 -1
  149. data/wasm/README.md +60 -0
  150. data/wasm/rbs_wasm.c +423 -0
  151. metadata +28 -5
  152. data/.vscode/extensions.json +0 -5
  153. data/.vscode/settings.json +0 -19
data/core/struct.rbs CHANGED
@@ -104,8 +104,8 @@
104
104
  # * #inspect (aliased as #to_s): Returns a string representation of `self`.
105
105
  # * #to_h: Returns a hash of the member name/value pairs in `self`.
106
106
  #
107
- class Struct[Elem]
108
- include Enumerable[Elem]
107
+ class Struct[E]
108
+ include Enumerable[E]
109
109
 
110
110
  # The types that can be used when "indexing" into a `Struct` via `[]`, `[]=`, `dig`, and
111
111
  # `deconstruct_keys`.
@@ -362,7 +362,7 @@ class Struct[Elem]
362
362
  #
363
363
  # Related: #members.
364
364
  #
365
- def to_a: () -> Array[Elem]
365
+ def to_a: () -> Array[E]
366
366
 
367
367
  # <!--
368
368
  # rdoc-file=struct.c
@@ -385,8 +385,8 @@ class Struct[Elem]
385
385
  #
386
386
  # Raises ArgumentError if the block returns an inappropriate value.
387
387
  #
388
- def to_h: () -> Hash[Symbol, Elem]
389
- | [K, V] () { (Symbol key, Elem value) -> [K, V] } -> Hash[K, V]
388
+ def to_h: () -> Hash[Symbol, E]
389
+ | [K, V] () { (Symbol key, E value) -> [K, V] } -> Hash[K, V]
390
390
 
391
391
  # <!-- rdoc-file=struct.c -->
392
392
  # Returns the values in `self` as an array:
@@ -441,8 +441,8 @@ class Struct[Elem]
441
441
  #
442
442
  # Related: #each_pair.
443
443
  #
444
- def each: () -> Enumerator[Elem, self]
445
- | () { (Elem value) -> void } -> self
444
+ def each: () -> Enumerator[E, self]
445
+ | () { (E value) -> void } -> self
446
446
 
447
447
  # <!--
448
448
  # rdoc-file=struct.c
@@ -465,8 +465,8 @@ class Struct[Elem]
465
465
  #
466
466
  # Related: #each.
467
467
  #
468
- def each_pair: () -> Enumerator[[Symbol, Elem], self]
469
- | () { ([Symbol, Elem] key_value) -> void } -> self
468
+ def each_pair: () -> Enumerator[[Symbol, E], self]
469
+ | () { ([Symbol, E] key_value) -> void } -> self
470
470
 
471
471
  # <!--
472
472
  # rdoc-file=struct.c
@@ -492,7 +492,7 @@ class Struct[Elem]
492
492
  #
493
493
  # Raises IndexError if `n` is out of range.
494
494
  #
495
- def []: (index name_or_position) -> Elem
495
+ def []: (index name_or_position) -> E
496
496
 
497
497
  # <!--
498
498
  # rdoc-file=struct.c
@@ -521,7 +521,7 @@ class Struct[Elem]
521
521
  #
522
522
  # Raises IndexError if `n` is out of range.
523
523
  #
524
- def []=: (index name_or_position, Elem value) -> Elem
524
+ def []=: (index name_or_position, E value) -> E
525
525
 
526
526
  # <!--
527
527
  # rdoc-file=struct.c
@@ -540,8 +540,8 @@ class Struct[Elem]
540
540
  #
541
541
  # With no block given, returns an Enumerator.
542
542
  #
543
- def select: () -> Enumerator[Elem, Array[Elem]]
544
- | () { (Elem value) -> boolish } -> Array[Elem]
543
+ def select: () -> Enumerator[E, Array[E]]
544
+ | () { (E value) -> boolish } -> Array[E]
545
545
 
546
546
  # <!-- rdoc-file=struct.c -->
547
547
  # With a block given, returns an array of values from `self` for which the block
@@ -591,7 +591,7 @@ class Struct[Elem]
591
591
  # Raises RangeError if any element of the range is negative and out of range;
592
592
  # see Array@Array+Indexes.
593
593
  #
594
- def values_at: (*int | range[int?] positions) -> Array[Elem]
594
+ def values_at: (*int | range[int?] positions) -> Array[E]
595
595
 
596
596
  # <!--
597
597
  # rdoc-file=struct.c
@@ -634,7 +634,7 @@ class Struct[Elem]
634
634
  # f.dig(0, 0, :b, 0) # => 1
635
635
  # f.dig(:b, 0) # => nil
636
636
  #
637
- def dig: (index name_or_position) -> Elem
637
+ def dig: (index name_or_position) -> E
638
638
  | (index name_or_position, untyped, *untyped) -> untyped
639
639
 
640
640
  # <!-- rdoc-file=struct.c -->
@@ -664,5 +664,5 @@ class Struct[Elem]
664
664
  # h = joe.deconstruct_keys(nil)
665
665
  # h # => {:name=>"Joseph Smith, Jr.", :address=>"123 Maple, Anytown NC", :zip=>12345}
666
666
  #
667
- def deconstruct_keys: (Array[index & Hash::_Key]? indices) -> Hash[index & Hash::_Key, Elem]
667
+ def deconstruct_keys: (Array[index & Hash::_Key]? indices) -> Hash[index & Hash::_Key, E]
668
668
  end
data/core/thread.rbs CHANGED
@@ -1565,10 +1565,10 @@ class Thread::Mutex < Object
1565
1565
 
1566
1566
  # <!--
1567
1567
  # rdoc-file=thread_sync.rb
1568
- # - mutex.lock -> self
1568
+ # - mutex.unlock -> self
1569
1569
  # -->
1570
- # Attempts to grab the lock and waits if it isn't available. Raises
1571
- # `ThreadError` if `mutex` was locked by the current thread.
1570
+ # Releases the lock. Raises `ThreadError` if `mutex` wasn't locked by the
1571
+ # current thread.
1572
1572
  #
1573
1573
  def unlock: () -> self
1574
1574
  end
@@ -1604,7 +1604,7 @@ end
1604
1604
  #
1605
1605
  # consumer.join
1606
1606
  #
1607
- class Thread::Queue[Elem = untyped] < Object
1607
+ class Thread::Queue[E = untyped] < Object
1608
1608
  # <!-- rdoc-file=thread_sync.c -->
1609
1609
  # Pushes the given `object` to the queue.
1610
1610
  #
@@ -1719,7 +1719,7 @@ class Thread::Queue[Elem = untyped] < Object
1719
1719
  # If `timeout` seconds have passed and no data is available `nil` is returned.
1720
1720
  # If `timeout` is `0` it returns immediately.
1721
1721
  #
1722
- def pop: (?boolish non_block, ?timeout: _ToF?) -> Elem?
1722
+ def pop: (?boolish non_block, ?timeout: _ToF?) -> E?
1723
1723
 
1724
1724
  # <!--
1725
1725
  # rdoc-file=thread_sync.c
@@ -1729,7 +1729,7 @@ class Thread::Queue[Elem = untyped] < Object
1729
1729
  # -->
1730
1730
  # Pushes the given `object` to the queue.
1731
1731
  #
1732
- def push: (Elem obj) -> void
1732
+ def push: (E obj) -> void
1733
1733
 
1734
1734
  # <!--
1735
1735
  # rdoc-file=thread_sync.rb
@@ -1750,12 +1750,7 @@ end
1750
1750
  #
1751
1751
  # See Thread::Queue for an example of how a Thread::SizedQueue works.
1752
1752
  #
1753
- class Thread::SizedQueue[Elem = untyped] < Thread::Queue[Elem]
1754
- # <!--
1755
- # rdoc-file=thread_sync.rb
1756
- # - <<(object, non_block = false, timeout: nil)
1757
- # -->
1758
- #
1753
+ class Thread::SizedQueue[E = untyped] < Thread::Queue[E]
1759
1754
  alias << push
1760
1755
 
1761
1756
  # <!--
@@ -1813,8 +1808,8 @@ class Thread::SizedQueue[Elem = untyped] < Thread::Queue[Elem]
1813
1808
  # If `timeout` seconds have passed and no space is available `nil` is returned.
1814
1809
  # If `timeout` is `0` it returns immediately. Otherwise it returns `self`.
1815
1810
  #
1816
- def push: (Elem obj, ?boolish non_block) -> void
1817
- | (Elem obj, timeout: _ToF?) -> self?
1811
+ def push: (E obj, ?boolish non_block) -> void
1812
+ | (E obj, timeout: _ToF?) -> self?
1818
1813
  end
1819
1814
 
1820
1815
  class ConditionVariable = Thread::ConditionVariable
data/docs/CONTRIBUTING.md CHANGED
@@ -12,7 +12,8 @@
12
12
  The RBS repository contains the type definitions of Core API and Standard Libraries.
13
13
  There are some discussions whether if it is the best to have them in this repository, but we have them and continue updating the files meanwhile.
14
14
 
15
- The target version of the bundled type definitions is the latest _release_ of Ruby -- `3.1` as of January 2022.
15
+ The target version of the bundled type definitions is the [latest _release_ of Ruby](https://www.ruby-lang.org/en/downloads/branches/) -- `4.0` as of 2026.
16
+ Note, however, that the CI runs the tests on every non-EOL Ruby -- `3.3` and later as of 2026.
16
17
 
17
18
  **The core API** type definitions are in `core` directory.
18
19
  You will find the familiar class names in the directory, like `string.rbs` or `array.rbs`.
data/docs/inline.md CHANGED
@@ -123,10 +123,38 @@ end
123
123
 
124
124
  This creates the types `::API`, `::API::V1`, and `::API::V1::Resources`.
125
125
 
126
+ ### `module-self` constraint
127
+
128
+ The `module-self` constraint declares which classes or modules the module can be mixed into.
129
+
130
+ ```ruby
131
+ # @rbs module-self: _Each[String]
132
+ module Enumerable2
133
+ end
134
+ ```
135
+
136
+ This is equivalent to `module Enumerable2 : _Each[String]` in RBS, meaning `Enumerable2` can only be included in classes that satisfy the `_Each[String]` interface.
137
+
138
+ Multiple `module-self` constraints can be declared with separate annotations:
139
+
140
+ ```ruby
141
+ # @rbs module-self: _Each[String]
142
+ # @rbs module-self: Comparable
143
+ module StringCollection
144
+ end
145
+ ```
146
+
147
+ You can add a description after `--`:
148
+
149
+ ```ruby
150
+ # @rbs module-self: Minitest::Test -- depending on assertion methods
151
+ module TestHelper
152
+ end
153
+ ```
154
+
126
155
  ### Current Limitations
127
156
 
128
157
  - Generic module definitions are not supported
129
- - Module self-type constraints are not supported
130
158
 
131
159
  ## Method Definitions
132
160
 
@@ -135,6 +163,8 @@ Inline RBS supports methods defined using the `def` syntax in Ruby.
135
163
  ```ruby
136
164
  class Calculator
137
165
  def add(x, y) = x+y
166
+
167
+ def self.zero = 0
138
168
  end
139
169
  ```
140
170
 
@@ -205,6 +235,18 @@ The type of both methods is `(Integer, Integer) -> Integer | (Float, Float) -> F
205
235
  > The `@rbs METHOD-TYPE` syntax allows overloads with the `|` operator, just like in RBS files.
206
236
  > Multiple `: METHOD-TYPE` declarations are required for overloads.
207
237
 
238
+ The `#:` syntax can also be used as a trailing annotation to declare the return type of a method:
239
+
240
+ ```ruby
241
+ class Calculator
242
+ def add(x, y) #: Integer
243
+ x + y
244
+ end
245
+
246
+ def subtract(x, y) = x - y #: Integer
247
+ end
248
+ ```
249
+
208
250
  The `@rbs METHOD-TYPE` syntax allows having `...` at the last part.
209
251
 
210
252
  ```ruby
@@ -309,9 +351,10 @@ end
309
351
 
310
352
  ### Current Limitations
311
353
 
312
- - Class methods and singleton methods are not supported
313
- - Only positional and keyword parameters are supported. Splat parameters (`*x`, `**y`) and block parameter (`&block`) are not supported yet.
314
354
  - Method visibility declaration is not supported yet
355
+ - The `class << self` syntax is not supported
356
+ - Top-level method definitions (outside any class/module) are not supported
357
+ - Method definitions with a non-self receiver (e.g. `def obj.foo`) are not supported
315
358
 
316
359
  ## Attributes
317
360
 
@@ -389,6 +432,7 @@ The attribute definitions are ignored because the names are given by string lite
389
432
  ### Current Limitations
390
433
 
391
434
  - Attribute visibility is not supported yet. All attributes are _public_
435
+ - Top-level attribute definitions (outside any class/module) are not supported
392
436
 
393
437
  ## Mixin
394
438
 
@@ -487,7 +531,7 @@ end
487
531
  ```
488
532
 
489
533
  The `@rbs @VAR-NAME: TYPE` syntax enclosed in `class`/`module` syntax declares instance variables.
490
- You can add the documentation of the variable followed by two hyphones (`--`).
534
+ You can add the documentation of the variable followed by two hyphens (`--`).
491
535
 
492
536
  Instance variable declarations must be under the `class`/`module` syntax, and they are ignored if written inside method definitions.
493
537
 
@@ -519,14 +563,16 @@ The types of constants may be automatically inferred when the right-hand side co
519
563
  - **Floats**: `RATE = 3.14` → `Float`
520
564
  - **Booleans**: `ENABLED = true` → `bool`
521
565
  - **Strings**: `NAME = "test"` → `String`
522
- - **Symbols**: `STATUS = :ready` → `:ready`
566
+ - **Symbols**: `STATUS = :ready` → `Symbol`
567
+ - **Nil**: `EMPTY = nil` → `nil`
523
568
 
524
569
  ```ruby
525
570
  MAX_SIZE = 100 # Inferred as Integer
526
571
  PI = 3.14159 # Inferred as Float
527
572
  DEBUG = false # Inferred as bool
528
573
  APP_NAME = "MyApp" # Inferred as String
529
- DEFAULT_MODE = :strict # Inferred as :strict
574
+ DEFAULT_MODE = :strict # Inferred as Symbol
575
+ NONE = nil # Inferred as nil
530
576
  ```
531
577
 
532
578
  ### Explicit Type Annotations
@@ -567,10 +613,22 @@ MyKernel = Kernel #: module-alias
567
613
 
568
614
  This creates new type names that refer to the same class or module as the original.
569
615
 
570
- The annotations can have optional type name to specify the class/module name, for the case it cannot be infered through the right-hand-side of the constant declaration.
616
+ The annotations can have optional type name to specify the class/module name, for the case it cannot be inferred through the right-hand-side of the constant declaration.
571
617
 
572
618
  ```ruby
573
619
  MyObject = object #: class-alias Object
574
620
 
575
621
  MyKernel = kernel #: module-alias Kernel
576
622
  ```
623
+
624
+ ## Skip Annotation
625
+
626
+ The `@rbs skip` annotation makes inline RBS ignore the following declaration.
627
+
628
+ ```ruby
629
+ class Calculator
630
+ # @rbs skip
631
+ def debug_internal
632
+ end
633
+ end
634
+ ```
@@ -107,14 +107,14 @@ end
107
107
  For now, it's safe to ignore them, but they're included for completeness.
108
108
 
109
109
  ```rbs
110
- class Array[Elem]
110
+ class Array[E]
111
111
  def *: (String) -> String
112
- | (Integer) -> Array[Elem]
112
+ | (Integer) -> Array[E]
113
113
  end
114
114
  ```
115
115
 
116
116
  `Array`'s `*` method, when given a `String` returns a `String`. When given an
117
- `Integer`, it returns an `Array` of the same contained type `Elem` (in our example case, `Elem` corresponds to `Integer`).
117
+ `Integer`, it returns an `Array` of the same contained type `E` (in our example case, `E` corresponds to `Integer`).
118
118
 
119
119
  ### Union types
120
120
 
@@ -150,9 +150,9 @@ end
150
150
  ```
151
151
 
152
152
  ```rbs
153
- class Enumerable[Elem]
154
- def first: () -> Elem?
155
- | (Integer) -> Array[Elem]
153
+ class Enumerable[E]
154
+ def first: () -> E?
155
+ | (Integer) -> Array[E]
156
156
  end
157
157
  ```
158
158
 
@@ -160,12 +160,12 @@ end
160
160
 
161
161
  When called with no arguments, the return value will either be an instance of
162
162
  whatever type is contained in the enumerable, or `nil`. We represent that with
163
- the type variable `Elem`, and the `?` suffix nilable marker.
163
+ the type variable `E`, and the `?` suffix nilable marker.
164
164
 
165
165
  When called with an `Integer` positional argument, the return value will be an
166
166
  `Array` of whatever type is contained.
167
167
 
168
- The `?` syntax is a convenient shorthand for a union with nil. An equivalent union type would be `(Elem | nil)`.
168
+ The `?` syntax is a convenient shorthand for a union with nil. An equivalent union type would be `(E | nil)`.
169
169
 
170
170
  ### Keyword Arguments
171
171
 
@@ -222,9 +222,9 @@ end
222
222
  ```
223
223
 
224
224
  ```rbs
225
- class Array[Elem]
226
- def filter: () { (Elem) -> boolish } -> ::Array[Elem]
227
- | () -> ::Enumerator[Elem, ::Array[Elem]]
225
+ class Array[E]
226
+ def filter: () { (E) -> boolish } -> ::Array[E]
227
+ | () -> ::Enumerator[E, ::Array[E]]
228
228
  end
229
229
  ```
230
230
 
@@ -264,13 +264,13 @@ a.collect.with_index {|x, i| x * i}
264
264
  ```
265
265
 
266
266
  ```rbs
267
- class Array[Elem]
268
- def collect: [U] () { (Elem) -> U } -> Array[U]
269
- | () -> Enumerator[Elem, Array[untyped]]
267
+ class Array[E]
268
+ def collect: [U] () { (E) -> U } -> Array[U]
269
+ | () -> Enumerator[E, Array[untyped]]
270
270
  end
271
271
  ```
272
272
 
273
- Type variables can also be introduced in methods. Here, in `Array`'s `#collect` method, we introduce a type variable `U`. The block passed to `#collect` will receive a parameter of type `Elem`, and return a value of type `U`. Then `#collect` will return an `Array` of type `U`.
273
+ Type variables can also be introduced in methods. Here, in `Array`'s `#collect` method, we introduce a type variable `U`. The block passed to `#collect` will receive a parameter of type `E`, and return a value of type `U`. Then `#collect` will return an `Array` of type `U`.
274
274
 
275
275
  In this example, the method receives its signature from the inferred return type of the passed block. When then block is absent, as in when the method returns an `Enumerator`, we can't infer the type, and so the return value of the enumerator can only be described as `Array[untyped]`.
276
276
 
@@ -284,9 +284,9 @@ In this example, the method receives its signature from the inferred return type
284
284
  ```
285
285
 
286
286
  ```rbs
287
- class Enumerable[Elem]
288
- def partition: () { (Elem) -> boolish } -> [Array[Elem], Array[Elem]]
289
- | () -> ::Enumerator[Elem, [Array[Elem], Array[Elem] ]]
287
+ class Enumerable[E]
288
+ def partition: () { (E) -> boolish } -> [Array[E], Array[E]]
289
+ | () -> ::Enumerator[E, [Array[E], Array[E] ]]
290
290
  end
291
291
  ```
292
292
 
@@ -300,9 +300,9 @@ Tuples can be of any size, and they can have mixed types.
300
300
  ```
301
301
 
302
302
  ```rbs
303
- class Enumerable[Elem]
303
+ class Enumerable[E]
304
304
  def to_h: () -> ::Hash[untyped, untyped]
305
- | [T, U] () { (Elem) -> [T, U] } -> ::Hash[T, U]
305
+ | [T, U] () { (E) -> [T, U] } -> ::Hash[T, U]
306
306
  end
307
307
  ```
308
308
 
data/docs/release.md ADDED
@@ -0,0 +1,69 @@
1
+ # Releasing RBS
2
+
3
+ Each release ships **two gems**:
4
+
5
+ | Gem | Platform | Parser | How it is built |
6
+ | --- | --- | --- | --- |
7
+ | `rbs-X.Y.Z.gem` | `ruby` (MRI) | C extension | `rake release` (re-builds it) |
8
+ | `rbs-X.Y.Z-java.gem` | `java` (JRuby) | WebAssembly (`lib/rbs/wasm`) | Docker image, pushed manually |
9
+
10
+ The `-java` gem contains no native code — just `rbs_parser.wasm`. The Chicory/ASM
11
+ jars it needs are not shipped in the gem; they are declared as `jar-dependencies`
12
+ requirements and fetched from Maven when the gem is installed. So the gem can be
13
+ built once in any environment and runs on every JRuby.
14
+
15
+ ## Prerequisites
16
+
17
+ - Push rights to the `rbs` gem on RubyGems (`gem signin`). If your account has
18
+ MFA enabled, `gem push` / `rake release` will prompt for an OTP.
19
+ - Docker, for the `-java` gem. The WASI SDK is baked into the image, so there is
20
+ nothing to install on the host.
21
+
22
+ ## Steps
23
+
24
+ ### 1. Release the `ruby` gem
25
+
26
+ Once the version is bumped and committed, run on CRuby:
27
+
28
+ ```console
29
+ $ bundle exec rake release
30
+ ```
31
+
32
+ This re-builds the `ruby`-platform gem and then:
33
+
34
+ - creates the tag `vX.Y.Z`,
35
+ - pushes the current branch and the tag to `origin`,
36
+ - pushes the gem to RubyGems,
37
+ - runs `release:note`, which opens a GitHub **draft** release (with
38
+ `--prerelease` for `*.pre.*` versions) and prints the remaining manual steps.
39
+
40
+ ### 2. Build and push the `java` gem
41
+
42
+ The `java` gem is not built by `rake release`, so build and push it manually:
43
+
44
+ ```console
45
+ # Build from the committed state (the gemspec's file list comes from `git ls-files`).
46
+ $ docker build -f Dockerfile.jruby -t rbs-jruby .
47
+
48
+ # Build rbs_parser.wasm and the -java gem into ./pkg on the host. The Chicory/ASM
49
+ # jars are not bundled; they are fetched from Maven when the gem is installed.
50
+ $ docker run --rm -e RBS_PLATFORM=java -v "$PWD/pkg:/out" rbs-jruby \
51
+ gem build rbs.gemspec -o /out/rbs-X.Y.Z-java.gem
52
+
53
+ $ gem push pkg/rbs-X.Y.Z-java.gem
54
+ ```
55
+
56
+ Optionally confirm it installs and runs on JRuby before pushing:
57
+
58
+ ```console
59
+ $ docker run --rm -v "$PWD/pkg:/pkg" -w /tmp rbs-jruby bash -c \
60
+ 'gem install /pkg/rbs-X.Y.Z-java.gem && ruby -e "require %q{rbs}; puts [RUBY_ENGINE, RBS::VERSION].join(%q{ })"'
61
+ ```
62
+
63
+ ## Notes
64
+
65
+ - Prereleases (`X.Y.Z.pre.N`) are only installed with `gem install rbs --pre`;
66
+ a plain `gem install rbs` is unaffected. On JRuby, `gem install rbs [--pre]`
67
+ resolves to the `-java` gem automatically.
68
+ - The Dockerfile pins the WASI SDK / Chicory / ASM versions to match the
69
+ `wasm` and `jruby` CI workflows. Keep them in sync when bumping.
data/docs/syntax.md CHANGED
@@ -196,8 +196,8 @@ It is an alias of `top` type, and you can use `boolish` if we want to allow any
196
196
  We can see an example at the definition of `Enumerable#find`:
197
197
 
198
198
  ```rbs
199
- module Enumerable[Elem, Return]
200
- def find: () { (Elem) -> boolish } -> Elem?
199
+ module Enumerable[E, R]
200
+ def find: () { (E) -> boolish } -> E?
201
201
  end
202
202
  ```
203
203
 
@@ -0,0 +1,80 @@
1
+ # RBS AST binary serialization
2
+
3
+ This document describes the binary format used to move a parsed RBS AST out of
4
+ the parser and into Ruby objects without going through the Ruby C API. It exists
5
+ so that RBS can run on Ruby implementations that cannot load the C extension
6
+ (notably JRuby): the parser runs inside WebAssembly, serializes the result with
7
+ this format, and the host rebuilds `RBS::AST` objects in pure Ruby.
8
+
9
+ The encoder (`rbs_serialize_node`, `src/serialize.c`) and the schema that drives
10
+ the decoder (`RBS::WASM::SerializationSchema`, `lib/rbs/wasm/serialization_schema.rb`)
11
+ are both generated from `config.yml`, so they always agree. The decoder itself
12
+ is `RBS::WASM::Deserializer`.
13
+
14
+ ## Conventions
15
+
16
+ - All multi-byte integers are **little-endian**.
17
+ - `u8`, `u32` are unsigned; `i32` is signed.
18
+ - `str` is a `u32` byte length followed by that many raw bytes (no terminator).
19
+ - A value is reconstructed to mirror exactly what `ast_translation.c` produces,
20
+ including string encodings: string/integer literal nodes are UTF-8, while
21
+ comments, annotations and symbols use the source buffer's encoding.
22
+
23
+ ## Nodes
24
+
25
+ Every node begins with a `u8` **tag**:
26
+
27
+ - `0` — a NULL node (`nil` on the Ruby side).
28
+ - `1..N` — a node type, in the order they appear in `SerializationSchema::SCHEMA`.
29
+ - `SYMBOL_TAG` (`N + 1`) — an interned symbol, followed by `str` (the symbol's
30
+ bytes). Decoded with `String#to_sym`.
31
+
32
+ A few node types are encoded specially, matching their bespoke handling in
33
+ `ast_translation.c`:
34
+
35
+ | Node | Payload after tag | Decoded as |
36
+ | --- | --- | --- |
37
+ | `RBS::AST::Bool` | `u8` | `true` / `false` |
38
+ | `RBS::AST::Integer` | `str` | `String#to_i` |
39
+ | `RBS::AST::String` | `str` | the string (UTF-8) |
40
+ | `RBS::Types::Record::FieldType` | node, then `u8` | `[type, required]` |
41
+ | `RBS::Signature` | node-list, then node-list | `[directives, declarations]` |
42
+ | `RBS::Namespace` | node-list, then `u8` | `RBS::Namespace[path, absolute]` |
43
+ | `RBS::TypeName` | node, then node | `RBS::TypeName[namespace, name]` |
44
+
45
+ Every other node is encoded generically:
46
+
47
+ 1. If the node exposes a location, its **base location** is written (see below),
48
+ followed by one location range per declared child, in order.
49
+ 2. Each field is written in declaration order, encoded by its type (see below).
50
+
51
+ The decoder constructs `Klass.new(location:, **fields)` (omitting `location:`
52
+ for nodes that do not expose one). For `Class`, `Module`, `Interface`,
53
+ `TypeAlias` and `MethodType`, `RBS::AST::TypeParam.resolve_variables` is applied
54
+ to `type_params` first, exactly as the C translation does.
55
+
56
+ ## Fields
57
+
58
+ | Field type | Encoding |
59
+ | --- | --- |
60
+ | node (`rbs_node`, `rbs_type_name`, `rbs_ast_comment`, `rbs_ast_symbol`, ...) | a node (recursive; NULL allowed) |
61
+ | `rbs_node_list` | `u32` count, then that many nodes |
62
+ | `rbs_hash` | `u32` count, then count × (key node, value node) |
63
+ | `rbs_string` | `str` (source encoding) |
64
+ | `bool` | `u8` |
65
+ | enum | `u8` index into the enum's values (see `SCHEMA`) |
66
+ | `rbs_location_range` | a location range |
67
+ | `rbs_location_range_list` | `u32` count, then that many location ranges |
68
+ | `rbs_attr_ivar_name` | `u8` tag: `0` → `nil`, `1` → `false`, `2` → `str` → symbol |
69
+
70
+ ## Location ranges
71
+
72
+ A location range is a `u8` presence flag:
73
+
74
+ - `0` — null range (`nil`, or a node with no location).
75
+ - `1` — followed by `i32` start and `i32` end **character** positions.
76
+
77
+ The base location and child ranges together let the decoder rebuild an
78
+ `RBS::Location` (with its required/optional children) through the public
79
+ `RBS::Location` API, so the same decoder works whether `RBS::Location` is backed
80
+ by the C extension or a pure-Ruby implementation.