jruby-prism-parser 0.23.0.pre.SNAPSHOT-java → 1.4.0-java

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 (148) hide show
  1. checksums.yaml +4 -4
  2. data/BSDmakefile +58 -0
  3. data/CHANGELOG.md +284 -1
  4. data/CONTRIBUTING.md +0 -4
  5. data/Makefile +25 -18
  6. data/README.md +57 -6
  7. data/config.yml +1724 -140
  8. data/docs/build_system.md +39 -11
  9. data/docs/configuration.md +4 -0
  10. data/docs/cruby_compilation.md +1 -1
  11. data/docs/fuzzing.md +1 -1
  12. data/docs/parser_translation.md +14 -9
  13. data/docs/parsing_rules.md +4 -1
  14. data/docs/releasing.md +9 -11
  15. data/docs/relocation.md +34 -0
  16. data/docs/ripper_translation.md +72 -0
  17. data/docs/ruby_api.md +2 -1
  18. data/docs/serialization.md +29 -5
  19. data/ext/prism/api_node.c +3841 -2000
  20. data/ext/prism/api_pack.c +9 -0
  21. data/ext/prism/extconf.rb +55 -34
  22. data/ext/prism/extension.c +597 -346
  23. data/ext/prism/extension.h +6 -5
  24. data/include/prism/ast.h +2612 -455
  25. data/include/prism/defines.h +160 -2
  26. data/include/prism/diagnostic.h +188 -76
  27. data/include/prism/encoding.h +22 -4
  28. data/include/prism/node.h +89 -17
  29. data/include/prism/options.h +224 -12
  30. data/include/prism/pack.h +11 -0
  31. data/include/prism/parser.h +267 -66
  32. data/include/prism/prettyprint.h +8 -0
  33. data/include/prism/regexp.h +18 -8
  34. data/include/prism/static_literals.h +121 -0
  35. data/include/prism/util/pm_buffer.h +75 -2
  36. data/include/prism/util/pm_char.h +1 -2
  37. data/include/prism/util/pm_constant_pool.h +18 -9
  38. data/include/prism/util/pm_integer.h +126 -0
  39. data/include/prism/util/pm_list.h +1 -1
  40. data/include/prism/util/pm_newline_list.h +23 -3
  41. data/include/prism/util/pm_string.h +48 -8
  42. data/include/prism/version.h +3 -3
  43. data/include/prism.h +99 -5
  44. data/jruby-prism.jar +0 -0
  45. data/lib/prism/compiler.rb +11 -1
  46. data/lib/prism/desugar_compiler.rb +264 -80
  47. data/lib/prism/dispatcher.rb +45 -1
  48. data/lib/prism/dot_visitor.rb +201 -77
  49. data/lib/prism/dsl.rb +672 -457
  50. data/lib/prism/ffi.rb +308 -94
  51. data/lib/prism/inspect_visitor.rb +2389 -0
  52. data/lib/prism/lex_compat.rb +35 -16
  53. data/lib/prism/mutation_compiler.rb +24 -8
  54. data/lib/prism/node.rb +9712 -8931
  55. data/lib/prism/node_ext.rb +328 -32
  56. data/lib/prism/pack.rb +4 -0
  57. data/lib/prism/parse_result/comments.rb +34 -24
  58. data/lib/prism/parse_result/errors.rb +65 -0
  59. data/lib/prism/parse_result/newlines.rb +102 -12
  60. data/lib/prism/parse_result.rb +458 -46
  61. data/lib/prism/pattern.rb +28 -10
  62. data/lib/prism/polyfill/append_as_bytes.rb +15 -0
  63. data/lib/prism/polyfill/byteindex.rb +13 -0
  64. data/lib/prism/polyfill/unpack1.rb +14 -0
  65. data/lib/prism/reflection.rb +413 -0
  66. data/lib/prism/relocation.rb +504 -0
  67. data/lib/prism/serialize.rb +1940 -902
  68. data/lib/prism/string_query.rb +30 -0
  69. data/lib/prism/translation/parser/builder.rb +61 -0
  70. data/lib/prism/translation/parser/compiler.rb +569 -195
  71. data/lib/prism/translation/parser/lexer.rb +516 -39
  72. data/lib/prism/translation/parser.rb +188 -11
  73. data/lib/prism/translation/parser33.rb +12 -0
  74. data/lib/prism/translation/parser34.rb +12 -0
  75. data/lib/prism/translation/parser35.rb +12 -0
  76. data/lib/prism/translation/ripper/sexp.rb +125 -0
  77. data/lib/prism/translation/ripper/shim.rb +5 -0
  78. data/lib/prism/translation/ripper.rb +3267 -386
  79. data/lib/prism/translation/ruby_parser.rb +194 -69
  80. data/lib/prism/translation.rb +4 -1
  81. data/lib/prism/version.rb +1 -1
  82. data/lib/prism/visitor.rb +13 -0
  83. data/lib/prism.rb +17 -27
  84. data/prism.gemspec +59 -17
  85. data/rbi/prism/compiler.rbi +12 -0
  86. data/rbi/prism/dsl.rbi +524 -0
  87. data/rbi/prism/inspect_visitor.rbi +12 -0
  88. data/rbi/prism/node.rbi +8722 -0
  89. data/rbi/prism/node_ext.rbi +107 -0
  90. data/rbi/prism/parse_result.rbi +404 -0
  91. data/rbi/prism/reflection.rbi +58 -0
  92. data/rbi/prism/string_query.rbi +12 -0
  93. data/rbi/prism/translation/parser.rbi +11 -0
  94. data/rbi/prism/translation/parser33.rbi +6 -0
  95. data/rbi/prism/translation/parser34.rbi +6 -0
  96. data/rbi/prism/translation/parser35.rbi +6 -0
  97. data/rbi/prism/translation/ripper.rbi +15 -0
  98. data/rbi/prism/visitor.rbi +473 -0
  99. data/rbi/prism.rbi +44 -7745
  100. data/sig/prism/compiler.rbs +9 -0
  101. data/sig/prism/dispatcher.rbs +16 -0
  102. data/sig/prism/dot_visitor.rbs +6 -0
  103. data/sig/prism/dsl.rbs +351 -0
  104. data/sig/prism/inspect_visitor.rbs +22 -0
  105. data/sig/prism/lex_compat.rbs +10 -0
  106. data/sig/prism/mutation_compiler.rbs +159 -0
  107. data/sig/prism/node.rbs +3614 -0
  108. data/sig/prism/node_ext.rbs +82 -0
  109. data/sig/prism/pack.rbs +43 -0
  110. data/sig/prism/parse_result.rbs +192 -0
  111. data/sig/prism/pattern.rbs +13 -0
  112. data/sig/prism/reflection.rbs +50 -0
  113. data/sig/prism/relocation.rbs +185 -0
  114. data/sig/prism/serialize.rbs +8 -0
  115. data/sig/prism/string_query.rbs +11 -0
  116. data/sig/prism/visitor.rbs +169 -0
  117. data/sig/prism.rbs +248 -4767
  118. data/src/diagnostic.c +672 -230
  119. data/src/encoding.c +211 -108
  120. data/src/node.c +7541 -1653
  121. data/src/options.c +135 -20
  122. data/src/pack.c +33 -17
  123. data/src/prettyprint.c +1546 -1488
  124. data/src/prism.c +7822 -3044
  125. data/src/regexp.c +225 -73
  126. data/src/serialize.c +101 -77
  127. data/src/static_literals.c +617 -0
  128. data/src/token_type.c +14 -13
  129. data/src/util/pm_buffer.c +187 -20
  130. data/src/util/pm_char.c +5 -5
  131. data/src/util/pm_constant_pool.c +39 -19
  132. data/src/util/pm_integer.c +670 -0
  133. data/src/util/pm_list.c +1 -1
  134. data/src/util/pm_newline_list.c +49 -8
  135. data/src/util/pm_string.c +213 -33
  136. data/src/util/pm_strncasecmp.c +13 -1
  137. data/src/util/pm_strpbrk.c +32 -6
  138. metadata +59 -21
  139. data/docs/ripper.md +0 -36
  140. data/include/prism/util/pm_state_stack.h +0 -42
  141. data/include/prism/util/pm_string_list.h +0 -44
  142. data/lib/prism/debug.rb +0 -206
  143. data/lib/prism/node_inspector.rb +0 -68
  144. data/lib/prism/translation/parser/rubocop.rb +0 -37
  145. data/rbi/prism_static.rbi +0 -207
  146. data/sig/prism_static.rbs +0 -201
  147. data/src/util/pm_state_stack.c +0 -25
  148. data/src/util/pm_string_list.c +0 -28
data/lib/prism/dsl.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  =begin
3
4
  This file is generated by the templates/template.rb script and should not be
4
5
  modified manually. See templates/lib/prism/dsl.rb.erb
@@ -9,13 +10,20 @@ module Prism
9
10
  # The DSL module provides a set of methods that can be used to create prism
10
11
  # nodes in a more concise manner. For example, instead of writing:
11
12
  #
12
- # source = Prism::Source.new("[1]")
13
+ # source = Prism::Source.for("[1]")
13
14
  #
14
15
  # Prism::ArrayNode.new(
16
+ # source,
17
+ # 0,
18
+ # Prism::Location.new(source, 0, 3),
19
+ # 0,
15
20
  # [
16
21
  # Prism::IntegerNode.new(
17
- # Prism::IntegerBaseFlags::DECIMAL,
22
+ # source,
23
+ # 0,
18
24
  # Prism::Location.new(source, 1, 1),
25
+ # Prism::IntegerBaseFlags::DECIMAL,
26
+ # 1
19
27
  # )
20
28
  # ],
21
29
  # Prism::Location.new(source, 0, 1),
@@ -24,762 +32,969 @@ module Prism
24
32
  #
25
33
  # you could instead write:
26
34
  #
27
- # source = Prism::Source.new("[1]")
35
+ # class Builder
36
+ # include Prism::DSL
28
37
  #
29
- # ArrayNode(
30
- # IntegerNode(Prism::IntegerBaseFlags::DECIMAL, Location(source, 1, 1))),
31
- # Location(source, 0, 1),
32
- # Location(source, 2, 1)
33
- # )
38
+ # attr_reader :default_source
39
+ #
40
+ # def initialize
41
+ # @default_source = source("[1]")
42
+ # end
34
43
  #
35
- # This is mostly helpful in the context of writing tests, but can also be used
36
- # to generate trees programmatically.
44
+ # def build
45
+ # array_node(
46
+ # location: location(start_offset: 0, length: 3),
47
+ # elements: [
48
+ # integer_node(
49
+ # location: location(start_offset: 1, length: 1),
50
+ # flags: integer_base_flag(:decimal),
51
+ # value: 1
52
+ # )
53
+ # ],
54
+ # opening_loc: location(start_offset: 0, length: 1),
55
+ # closing_loc: location(start_offset: 2, length: 1)
56
+ # )
57
+ # end
58
+ # end
59
+ #
60
+ # This is mostly helpful in the context of generating trees programmatically.
37
61
  module DSL
38
- private
62
+ # Provide all of these methods as module methods as well, to allow for
63
+ # building nodes like Prism::DSL.nil_node.
64
+ extend self
65
+
66
+ # Create a new Source object.
67
+ def source(string)
68
+ Source.for(string)
69
+ end
39
70
 
40
- # Create a new Location object
41
- def Location(source = nil, start_offset = 0, length = 0)
71
+ # Create a new Location object.
72
+ def location(source: default_source, start_offset: 0, length: 0)
42
73
  Location.new(source, start_offset, length)
43
74
  end
44
75
 
45
- # Create a new AliasGlobalVariableNode node
46
- def AliasGlobalVariableNode(new_name, old_name, keyword_loc, location = Location())
47
- AliasGlobalVariableNode.new(new_name, old_name, keyword_loc, location)
76
+ # Create a new AliasGlobalVariableNode node.
77
+ def alias_global_variable_node(source: default_source, node_id: 0, location: default_location, flags: 0, new_name: global_variable_read_node(source: source), old_name: global_variable_read_node(source: source), keyword_loc: location)
78
+ AliasGlobalVariableNode.new(source, node_id, location, flags, new_name, old_name, keyword_loc)
79
+ end
80
+
81
+ # Create a new AliasMethodNode node.
82
+ def alias_method_node(source: default_source, node_id: 0, location: default_location, flags: 0, new_name: symbol_node(source: source), old_name: symbol_node(source: source), keyword_loc: location)
83
+ AliasMethodNode.new(source, node_id, location, flags, new_name, old_name, keyword_loc)
84
+ end
85
+
86
+ # Create a new AlternationPatternNode node.
87
+ def alternation_pattern_node(source: default_source, node_id: 0, location: default_location, flags: 0, left: default_node(source, location), right: default_node(source, location), operator_loc: location)
88
+ AlternationPatternNode.new(source, node_id, location, flags, left, right, operator_loc)
89
+ end
90
+
91
+ # Create a new AndNode node.
92
+ def and_node(source: default_source, node_id: 0, location: default_location, flags: 0, left: default_node(source, location), right: default_node(source, location), operator_loc: location)
93
+ AndNode.new(source, node_id, location, flags, left, right, operator_loc)
94
+ end
95
+
96
+ # Create a new ArgumentsNode node.
97
+ def arguments_node(source: default_source, node_id: 0, location: default_location, flags: 0, arguments: [])
98
+ ArgumentsNode.new(source, node_id, location, flags, arguments)
99
+ end
100
+
101
+ # Create a new ArrayNode node.
102
+ def array_node(source: default_source, node_id: 0, location: default_location, flags: 0, elements: [], opening_loc: nil, closing_loc: nil)
103
+ ArrayNode.new(source, node_id, location, flags, elements, opening_loc, closing_loc)
104
+ end
105
+
106
+ # Create a new ArrayPatternNode node.
107
+ def array_pattern_node(source: default_source, node_id: 0, location: default_location, flags: 0, constant: nil, requireds: [], rest: nil, posts: [], opening_loc: nil, closing_loc: nil)
108
+ ArrayPatternNode.new(source, node_id, location, flags, constant, requireds, rest, posts, opening_loc, closing_loc)
109
+ end
110
+
111
+ # Create a new AssocNode node.
112
+ def assoc_node(source: default_source, node_id: 0, location: default_location, flags: 0, key: default_node(source, location), value: default_node(source, location), operator_loc: nil)
113
+ AssocNode.new(source, node_id, location, flags, key, value, operator_loc)
48
114
  end
49
115
 
50
- # Create a new AliasMethodNode node
51
- def AliasMethodNode(new_name, old_name, keyword_loc, location = Location())
52
- AliasMethodNode.new(new_name, old_name, keyword_loc, location)
116
+ # Create a new AssocSplatNode node.
117
+ def assoc_splat_node(source: default_source, node_id: 0, location: default_location, flags: 0, value: nil, operator_loc: location)
118
+ AssocSplatNode.new(source, node_id, location, flags, value, operator_loc)
53
119
  end
54
120
 
55
- # Create a new AlternationPatternNode node
56
- def AlternationPatternNode(left, right, operator_loc, location = Location())
57
- AlternationPatternNode.new(left, right, operator_loc, location)
121
+ # Create a new BackReferenceReadNode node.
122
+ def back_reference_read_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"")
123
+ BackReferenceReadNode.new(source, node_id, location, flags, name)
58
124
  end
59
125
 
60
- # Create a new AndNode node
61
- def AndNode(left, right, operator_loc, location = Location())
62
- AndNode.new(left, right, operator_loc, location)
126
+ # Create a new BeginNode node.
127
+ def begin_node(source: default_source, node_id: 0, location: default_location, flags: 0, begin_keyword_loc: nil, statements: nil, rescue_clause: nil, else_clause: nil, ensure_clause: nil, end_keyword_loc: nil)
128
+ BeginNode.new(source, node_id, location, flags, begin_keyword_loc, statements, rescue_clause, else_clause, ensure_clause, end_keyword_loc)
63
129
  end
64
130
 
65
- # Create a new ArgumentsNode node
66
- def ArgumentsNode(flags, arguments, location = Location())
67
- ArgumentsNode.new(flags, arguments, location)
131
+ # Create a new BlockArgumentNode node.
132
+ def block_argument_node(source: default_source, node_id: 0, location: default_location, flags: 0, expression: nil, operator_loc: location)
133
+ BlockArgumentNode.new(source, node_id, location, flags, expression, operator_loc)
68
134
  end
69
135
 
70
- # Create a new ArrayNode node
71
- def ArrayNode(flags, elements, opening_loc, closing_loc, location = Location())
72
- ArrayNode.new(flags, elements, opening_loc, closing_loc, location)
136
+ # Create a new BlockLocalVariableNode node.
137
+ def block_local_variable_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"")
138
+ BlockLocalVariableNode.new(source, node_id, location, flags, name)
73
139
  end
74
140
 
75
- # Create a new ArrayPatternNode node
76
- def ArrayPatternNode(constant, requireds, rest, posts, opening_loc, closing_loc, location = Location())
77
- ArrayPatternNode.new(constant, requireds, rest, posts, opening_loc, closing_loc, location)
141
+ # Create a new BlockNode node.
142
+ def block_node(source: default_source, node_id: 0, location: default_location, flags: 0, locals: [], parameters: nil, body: nil, opening_loc: location, closing_loc: location)
143
+ BlockNode.new(source, node_id, location, flags, locals, parameters, body, opening_loc, closing_loc)
78
144
  end
79
145
 
80
- # Create a new AssocNode node
81
- def AssocNode(key, value, operator_loc, location = Location())
82
- AssocNode.new(key, value, operator_loc, location)
146
+ # Create a new BlockParameterNode node.
147
+ def block_parameter_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: nil, name_loc: nil, operator_loc: location)
148
+ BlockParameterNode.new(source, node_id, location, flags, name, name_loc, operator_loc)
83
149
  end
84
150
 
85
- # Create a new AssocSplatNode node
86
- def AssocSplatNode(value, operator_loc, location = Location())
87
- AssocSplatNode.new(value, operator_loc, location)
151
+ # Create a new BlockParametersNode node.
152
+ def block_parameters_node(source: default_source, node_id: 0, location: default_location, flags: 0, parameters: nil, locals: [], opening_loc: nil, closing_loc: nil)
153
+ BlockParametersNode.new(source, node_id, location, flags, parameters, locals, opening_loc, closing_loc)
88
154
  end
89
155
 
90
- # Create a new BackReferenceReadNode node
91
- def BackReferenceReadNode(name, location = Location())
92
- BackReferenceReadNode.new(name, location)
156
+ # Create a new BreakNode node.
157
+ def break_node(source: default_source, node_id: 0, location: default_location, flags: 0, arguments: nil, keyword_loc: location)
158
+ BreakNode.new(source, node_id, location, flags, arguments, keyword_loc)
93
159
  end
94
160
 
95
- # Create a new BeginNode node
96
- def BeginNode(begin_keyword_loc, statements, rescue_clause, else_clause, ensure_clause, end_keyword_loc, location = Location())
97
- BeginNode.new(begin_keyword_loc, statements, rescue_clause, else_clause, ensure_clause, end_keyword_loc, location)
161
+ # Create a new CallAndWriteNode node.
162
+ def call_and_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, receiver: nil, call_operator_loc: nil, message_loc: nil, read_name: :"", write_name: :"", operator_loc: location, value: default_node(source, location))
163
+ CallAndWriteNode.new(source, node_id, location, flags, receiver, call_operator_loc, message_loc, read_name, write_name, operator_loc, value)
98
164
  end
99
165
 
100
- # Create a new BlockArgumentNode node
101
- def BlockArgumentNode(expression, operator_loc, location = Location())
102
- BlockArgumentNode.new(expression, operator_loc, location)
166
+ # Create a new CallNode node.
167
+ def call_node(source: default_source, node_id: 0, location: default_location, flags: 0, receiver: nil, call_operator_loc: nil, name: :"", message_loc: nil, opening_loc: nil, arguments: nil, closing_loc: nil, block: nil)
168
+ CallNode.new(source, node_id, location, flags, receiver, call_operator_loc, name, message_loc, opening_loc, arguments, closing_loc, block)
103
169
  end
104
170
 
105
- # Create a new BlockLocalVariableNode node
106
- def BlockLocalVariableNode(flags, name, location = Location())
107
- BlockLocalVariableNode.new(flags, name, location)
171
+ # Create a new CallOperatorWriteNode node.
172
+ def call_operator_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, receiver: nil, call_operator_loc: nil, message_loc: nil, read_name: :"", write_name: :"", binary_operator: :"", binary_operator_loc: location, value: default_node(source, location))
173
+ CallOperatorWriteNode.new(source, node_id, location, flags, receiver, call_operator_loc, message_loc, read_name, write_name, binary_operator, binary_operator_loc, value)
108
174
  end
109
175
 
110
- # Create a new BlockNode node
111
- def BlockNode(locals, parameters, body, opening_loc, closing_loc, location = Location())
112
- BlockNode.new(locals, parameters, body, opening_loc, closing_loc, location)
176
+ # Create a new CallOrWriteNode node.
177
+ def call_or_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, receiver: nil, call_operator_loc: nil, message_loc: nil, read_name: :"", write_name: :"", operator_loc: location, value: default_node(source, location))
178
+ CallOrWriteNode.new(source, node_id, location, flags, receiver, call_operator_loc, message_loc, read_name, write_name, operator_loc, value)
113
179
  end
114
180
 
115
- # Create a new BlockParameterNode node
116
- def BlockParameterNode(flags, name, name_loc, operator_loc, location = Location())
117
- BlockParameterNode.new(flags, name, name_loc, operator_loc, location)
181
+ # Create a new CallTargetNode node.
182
+ def call_target_node(source: default_source, node_id: 0, location: default_location, flags: 0, receiver: default_node(source, location), call_operator_loc: location, name: :"", message_loc: location)
183
+ CallTargetNode.new(source, node_id, location, flags, receiver, call_operator_loc, name, message_loc)
118
184
  end
119
185
 
120
- # Create a new BlockParametersNode node
121
- def BlockParametersNode(parameters, locals, opening_loc, closing_loc, location = Location())
122
- BlockParametersNode.new(parameters, locals, opening_loc, closing_loc, location)
186
+ # Create a new CapturePatternNode node.
187
+ def capture_pattern_node(source: default_source, node_id: 0, location: default_location, flags: 0, value: default_node(source, location), target: local_variable_target_node(source: source), operator_loc: location)
188
+ CapturePatternNode.new(source, node_id, location, flags, value, target, operator_loc)
123
189
  end
124
190
 
125
- # Create a new BreakNode node
126
- def BreakNode(arguments, keyword_loc, location = Location())
127
- BreakNode.new(arguments, keyword_loc, location)
191
+ # Create a new CaseMatchNode node.
192
+ def case_match_node(source: default_source, node_id: 0, location: default_location, flags: 0, predicate: nil, conditions: [], else_clause: nil, case_keyword_loc: location, end_keyword_loc: location)
193
+ CaseMatchNode.new(source, node_id, location, flags, predicate, conditions, else_clause, case_keyword_loc, end_keyword_loc)
128
194
  end
129
195
 
130
- # Create a new CallAndWriteNode node
131
- def CallAndWriteNode(flags, receiver, call_operator_loc, message_loc, read_name, write_name, operator_loc, value, location = Location())
132
- CallAndWriteNode.new(flags, receiver, call_operator_loc, message_loc, read_name, write_name, operator_loc, value, location)
196
+ # Create a new CaseNode node.
197
+ def case_node(source: default_source, node_id: 0, location: default_location, flags: 0, predicate: nil, conditions: [], else_clause: nil, case_keyword_loc: location, end_keyword_loc: location)
198
+ CaseNode.new(source, node_id, location, flags, predicate, conditions, else_clause, case_keyword_loc, end_keyword_loc)
133
199
  end
134
200
 
135
- # Create a new CallNode node
136
- def CallNode(flags, receiver, call_operator_loc, name, message_loc, opening_loc, arguments, closing_loc, block, location = Location())
137
- CallNode.new(flags, receiver, call_operator_loc, name, message_loc, opening_loc, arguments, closing_loc, block, location)
201
+ # Create a new ClassNode node.
202
+ def class_node(source: default_source, node_id: 0, location: default_location, flags: 0, locals: [], class_keyword_loc: location, constant_path: constant_read_node(source: source), inheritance_operator_loc: nil, superclass: nil, body: nil, end_keyword_loc: location, name: :"")
203
+ ClassNode.new(source, node_id, location, flags, locals, class_keyword_loc, constant_path, inheritance_operator_loc, superclass, body, end_keyword_loc, name)
138
204
  end
139
205
 
140
- # Create a new CallOperatorWriteNode node
141
- def CallOperatorWriteNode(flags, receiver, call_operator_loc, message_loc, read_name, write_name, operator, operator_loc, value, location = Location())
142
- CallOperatorWriteNode.new(flags, receiver, call_operator_loc, message_loc, read_name, write_name, operator, operator_loc, value, location)
206
+ # Create a new ClassVariableAndWriteNode node.
207
+ def class_variable_and_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", name_loc: location, operator_loc: location, value: default_node(source, location))
208
+ ClassVariableAndWriteNode.new(source, node_id, location, flags, name, name_loc, operator_loc, value)
143
209
  end
144
210
 
145
- # Create a new CallOrWriteNode node
146
- def CallOrWriteNode(flags, receiver, call_operator_loc, message_loc, read_name, write_name, operator_loc, value, location = Location())
147
- CallOrWriteNode.new(flags, receiver, call_operator_loc, message_loc, read_name, write_name, operator_loc, value, location)
211
+ # Create a new ClassVariableOperatorWriteNode node.
212
+ def class_variable_operator_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", name_loc: location, binary_operator_loc: location, value: default_node(source, location), binary_operator: :"")
213
+ ClassVariableOperatorWriteNode.new(source, node_id, location, flags, name, name_loc, binary_operator_loc, value, binary_operator)
148
214
  end
149
215
 
150
- # Create a new CallTargetNode node
151
- def CallTargetNode(flags, receiver, call_operator_loc, name, message_loc, location = Location())
152
- CallTargetNode.new(flags, receiver, call_operator_loc, name, message_loc, location)
216
+ # Create a new ClassVariableOrWriteNode node.
217
+ def class_variable_or_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", name_loc: location, operator_loc: location, value: default_node(source, location))
218
+ ClassVariableOrWriteNode.new(source, node_id, location, flags, name, name_loc, operator_loc, value)
153
219
  end
154
220
 
155
- # Create a new CapturePatternNode node
156
- def CapturePatternNode(value, target, operator_loc, location = Location())
157
- CapturePatternNode.new(value, target, operator_loc, location)
221
+ # Create a new ClassVariableReadNode node.
222
+ def class_variable_read_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"")
223
+ ClassVariableReadNode.new(source, node_id, location, flags, name)
158
224
  end
159
225
 
160
- # Create a new CaseMatchNode node
161
- def CaseMatchNode(predicate, conditions, consequent, case_keyword_loc, end_keyword_loc, location = Location())
162
- CaseMatchNode.new(predicate, conditions, consequent, case_keyword_loc, end_keyword_loc, location)
226
+ # Create a new ClassVariableTargetNode node.
227
+ def class_variable_target_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"")
228
+ ClassVariableTargetNode.new(source, node_id, location, flags, name)
163
229
  end
164
230
 
165
- # Create a new CaseNode node
166
- def CaseNode(predicate, conditions, consequent, case_keyword_loc, end_keyword_loc, location = Location())
167
- CaseNode.new(predicate, conditions, consequent, case_keyword_loc, end_keyword_loc, location)
231
+ # Create a new ClassVariableWriteNode node.
232
+ def class_variable_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", name_loc: location, value: default_node(source, location), operator_loc: location)
233
+ ClassVariableWriteNode.new(source, node_id, location, flags, name, name_loc, value, operator_loc)
168
234
  end
169
235
 
170
- # Create a new ClassNode node
171
- def ClassNode(locals, class_keyword_loc, constant_path, inheritance_operator_loc, superclass, body, end_keyword_loc, name, location = Location())
172
- ClassNode.new(locals, class_keyword_loc, constant_path, inheritance_operator_loc, superclass, body, end_keyword_loc, name, location)
236
+ # Create a new ConstantAndWriteNode node.
237
+ def constant_and_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", name_loc: location, operator_loc: location, value: default_node(source, location))
238
+ ConstantAndWriteNode.new(source, node_id, location, flags, name, name_loc, operator_loc, value)
173
239
  end
174
240
 
175
- # Create a new ClassVariableAndWriteNode node
176
- def ClassVariableAndWriteNode(name, name_loc, operator_loc, value, location = Location())
177
- ClassVariableAndWriteNode.new(name, name_loc, operator_loc, value, location)
241
+ # Create a new ConstantOperatorWriteNode node.
242
+ def constant_operator_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", name_loc: location, binary_operator_loc: location, value: default_node(source, location), binary_operator: :"")
243
+ ConstantOperatorWriteNode.new(source, node_id, location, flags, name, name_loc, binary_operator_loc, value, binary_operator)
178
244
  end
179
245
 
180
- # Create a new ClassVariableOperatorWriteNode node
181
- def ClassVariableOperatorWriteNode(name, name_loc, operator_loc, value, operator, location = Location())
182
- ClassVariableOperatorWriteNode.new(name, name_loc, operator_loc, value, operator, location)
246
+ # Create a new ConstantOrWriteNode node.
247
+ def constant_or_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", name_loc: location, operator_loc: location, value: default_node(source, location))
248
+ ConstantOrWriteNode.new(source, node_id, location, flags, name, name_loc, operator_loc, value)
183
249
  end
184
250
 
185
- # Create a new ClassVariableOrWriteNode node
186
- def ClassVariableOrWriteNode(name, name_loc, operator_loc, value, location = Location())
187
- ClassVariableOrWriteNode.new(name, name_loc, operator_loc, value, location)
251
+ # Create a new ConstantPathAndWriteNode node.
252
+ def constant_path_and_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, target: constant_path_node(source: source), operator_loc: location, value: default_node(source, location))
253
+ ConstantPathAndWriteNode.new(source, node_id, location, flags, target, operator_loc, value)
188
254
  end
189
255
 
190
- # Create a new ClassVariableReadNode node
191
- def ClassVariableReadNode(name, location = Location())
192
- ClassVariableReadNode.new(name, location)
256
+ # Create a new ConstantPathNode node.
257
+ def constant_path_node(source: default_source, node_id: 0, location: default_location, flags: 0, parent: nil, name: nil, delimiter_loc: location, name_loc: location)
258
+ ConstantPathNode.new(source, node_id, location, flags, parent, name, delimiter_loc, name_loc)
193
259
  end
194
260
 
195
- # Create a new ClassVariableTargetNode node
196
- def ClassVariableTargetNode(name, location = Location())
197
- ClassVariableTargetNode.new(name, location)
261
+ # Create a new ConstantPathOperatorWriteNode node.
262
+ def constant_path_operator_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, target: constant_path_node(source: source), binary_operator_loc: location, value: default_node(source, location), binary_operator: :"")
263
+ ConstantPathOperatorWriteNode.new(source, node_id, location, flags, target, binary_operator_loc, value, binary_operator)
198
264
  end
199
265
 
200
- # Create a new ClassVariableWriteNode node
201
- def ClassVariableWriteNode(name, name_loc, value, operator_loc, location = Location())
202
- ClassVariableWriteNode.new(name, name_loc, value, operator_loc, location)
266
+ # Create a new ConstantPathOrWriteNode node.
267
+ def constant_path_or_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, target: constant_path_node(source: source), operator_loc: location, value: default_node(source, location))
268
+ ConstantPathOrWriteNode.new(source, node_id, location, flags, target, operator_loc, value)
203
269
  end
204
270
 
205
- # Create a new ConstantAndWriteNode node
206
- def ConstantAndWriteNode(name, name_loc, operator_loc, value, location = Location())
207
- ConstantAndWriteNode.new(name, name_loc, operator_loc, value, location)
271
+ # Create a new ConstantPathTargetNode node.
272
+ def constant_path_target_node(source: default_source, node_id: 0, location: default_location, flags: 0, parent: nil, name: nil, delimiter_loc: location, name_loc: location)
273
+ ConstantPathTargetNode.new(source, node_id, location, flags, parent, name, delimiter_loc, name_loc)
208
274
  end
209
275
 
210
- # Create a new ConstantOperatorWriteNode node
211
- def ConstantOperatorWriteNode(name, name_loc, operator_loc, value, operator, location = Location())
212
- ConstantOperatorWriteNode.new(name, name_loc, operator_loc, value, operator, location)
276
+ # Create a new ConstantPathWriteNode node.
277
+ def constant_path_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, target: constant_path_node(source: source), operator_loc: location, value: default_node(source, location))
278
+ ConstantPathWriteNode.new(source, node_id, location, flags, target, operator_loc, value)
213
279
  end
214
280
 
215
- # Create a new ConstantOrWriteNode node
216
- def ConstantOrWriteNode(name, name_loc, operator_loc, value, location = Location())
217
- ConstantOrWriteNode.new(name, name_loc, operator_loc, value, location)
281
+ # Create a new ConstantReadNode node.
282
+ def constant_read_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"")
283
+ ConstantReadNode.new(source, node_id, location, flags, name)
218
284
  end
219
285
 
220
- # Create a new ConstantPathAndWriteNode node
221
- def ConstantPathAndWriteNode(target, operator_loc, value, location = Location())
222
- ConstantPathAndWriteNode.new(target, operator_loc, value, location)
286
+ # Create a new ConstantTargetNode node.
287
+ def constant_target_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"")
288
+ ConstantTargetNode.new(source, node_id, location, flags, name)
223
289
  end
224
290
 
225
- # Create a new ConstantPathNode node
226
- def ConstantPathNode(parent, child, delimiter_loc, location = Location())
227
- ConstantPathNode.new(parent, child, delimiter_loc, location)
291
+ # Create a new ConstantWriteNode node.
292
+ def constant_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", name_loc: location, value: default_node(source, location), operator_loc: location)
293
+ ConstantWriteNode.new(source, node_id, location, flags, name, name_loc, value, operator_loc)
228
294
  end
229
295
 
230
- # Create a new ConstantPathOperatorWriteNode node
231
- def ConstantPathOperatorWriteNode(target, operator_loc, value, operator, location = Location())
232
- ConstantPathOperatorWriteNode.new(target, operator_loc, value, operator, location)
296
+ # Create a new DefNode node.
297
+ def def_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", name_loc: location, receiver: nil, parameters: nil, body: nil, locals: [], def_keyword_loc: location, operator_loc: nil, lparen_loc: nil, rparen_loc: nil, equal_loc: nil, end_keyword_loc: nil)
298
+ DefNode.new(source, node_id, location, flags, name, name_loc, receiver, parameters, body, locals, def_keyword_loc, operator_loc, lparen_loc, rparen_loc, equal_loc, end_keyword_loc)
233
299
  end
234
300
 
235
- # Create a new ConstantPathOrWriteNode node
236
- def ConstantPathOrWriteNode(target, operator_loc, value, location = Location())
237
- ConstantPathOrWriteNode.new(target, operator_loc, value, location)
301
+ # Create a new DefinedNode node.
302
+ def defined_node(source: default_source, node_id: 0, location: default_location, flags: 0, lparen_loc: nil, value: default_node(source, location), rparen_loc: nil, keyword_loc: location)
303
+ DefinedNode.new(source, node_id, location, flags, lparen_loc, value, rparen_loc, keyword_loc)
238
304
  end
239
305
 
240
- # Create a new ConstantPathTargetNode node
241
- def ConstantPathTargetNode(parent, child, delimiter_loc, location = Location())
242
- ConstantPathTargetNode.new(parent, child, delimiter_loc, location)
306
+ # Create a new ElseNode node.
307
+ def else_node(source: default_source, node_id: 0, location: default_location, flags: 0, else_keyword_loc: location, statements: nil, end_keyword_loc: nil)
308
+ ElseNode.new(source, node_id, location, flags, else_keyword_loc, statements, end_keyword_loc)
243
309
  end
244
310
 
245
- # Create a new ConstantPathWriteNode node
246
- def ConstantPathWriteNode(target, operator_loc, value, location = Location())
247
- ConstantPathWriteNode.new(target, operator_loc, value, location)
311
+ # Create a new EmbeddedStatementsNode node.
312
+ def embedded_statements_node(source: default_source, node_id: 0, location: default_location, flags: 0, opening_loc: location, statements: nil, closing_loc: location)
313
+ EmbeddedStatementsNode.new(source, node_id, location, flags, opening_loc, statements, closing_loc)
248
314
  end
249
315
 
250
- # Create a new ConstantReadNode node
251
- def ConstantReadNode(name, location = Location())
252
- ConstantReadNode.new(name, location)
316
+ # Create a new EmbeddedVariableNode node.
317
+ def embedded_variable_node(source: default_source, node_id: 0, location: default_location, flags: 0, operator_loc: location, variable: instance_variable_read_node(source: source))
318
+ EmbeddedVariableNode.new(source, node_id, location, flags, operator_loc, variable)
253
319
  end
254
320
 
255
- # Create a new ConstantTargetNode node
256
- def ConstantTargetNode(name, location = Location())
257
- ConstantTargetNode.new(name, location)
321
+ # Create a new EnsureNode node.
322
+ def ensure_node(source: default_source, node_id: 0, location: default_location, flags: 0, ensure_keyword_loc: location, statements: nil, end_keyword_loc: location)
323
+ EnsureNode.new(source, node_id, location, flags, ensure_keyword_loc, statements, end_keyword_loc)
258
324
  end
259
325
 
260
- # Create a new ConstantWriteNode node
261
- def ConstantWriteNode(name, name_loc, value, operator_loc, location = Location())
262
- ConstantWriteNode.new(name, name_loc, value, operator_loc, location)
326
+ # Create a new FalseNode node.
327
+ def false_node(source: default_source, node_id: 0, location: default_location, flags: 0)
328
+ FalseNode.new(source, node_id, location, flags)
263
329
  end
264
330
 
265
- # Create a new DefNode node
266
- def DefNode(name, name_loc, receiver, parameters, body, locals, def_keyword_loc, operator_loc, lparen_loc, rparen_loc, equal_loc, end_keyword_loc, location = Location())
267
- DefNode.new(name, name_loc, receiver, parameters, body, locals, def_keyword_loc, operator_loc, lparen_loc, rparen_loc, equal_loc, end_keyword_loc, location)
331
+ # Create a new FindPatternNode node.
332
+ def find_pattern_node(source: default_source, node_id: 0, location: default_location, flags: 0, constant: nil, left: splat_node(source: source), requireds: [], right: splat_node(source: source), opening_loc: nil, closing_loc: nil)
333
+ FindPatternNode.new(source, node_id, location, flags, constant, left, requireds, right, opening_loc, closing_loc)
268
334
  end
269
335
 
270
- # Create a new DefinedNode node
271
- def DefinedNode(lparen_loc, value, rparen_loc, keyword_loc, location = Location())
272
- DefinedNode.new(lparen_loc, value, rparen_loc, keyword_loc, location)
336
+ # Create a new FlipFlopNode node.
337
+ def flip_flop_node(source: default_source, node_id: 0, location: default_location, flags: 0, left: nil, right: nil, operator_loc: location)
338
+ FlipFlopNode.new(source, node_id, location, flags, left, right, operator_loc)
273
339
  end
274
340
 
275
- # Create a new ElseNode node
276
- def ElseNode(else_keyword_loc, statements, end_keyword_loc, location = Location())
277
- ElseNode.new(else_keyword_loc, statements, end_keyword_loc, location)
341
+ # Create a new FloatNode node.
342
+ def float_node(source: default_source, node_id: 0, location: default_location, flags: 0, value: 0.0)
343
+ FloatNode.new(source, node_id, location, flags, value)
278
344
  end
279
345
 
280
- # Create a new EmbeddedStatementsNode node
281
- def EmbeddedStatementsNode(opening_loc, statements, closing_loc, location = Location())
282
- EmbeddedStatementsNode.new(opening_loc, statements, closing_loc, location)
346
+ # Create a new ForNode node.
347
+ def for_node(source: default_source, node_id: 0, location: default_location, flags: 0, index: local_variable_target_node(source: source), collection: default_node(source, location), statements: nil, for_keyword_loc: location, in_keyword_loc: location, do_keyword_loc: nil, end_keyword_loc: location)
348
+ ForNode.new(source, node_id, location, flags, index, collection, statements, for_keyword_loc, in_keyword_loc, do_keyword_loc, end_keyword_loc)
283
349
  end
284
350
 
285
- # Create a new EmbeddedVariableNode node
286
- def EmbeddedVariableNode(operator_loc, variable, location = Location())
287
- EmbeddedVariableNode.new(operator_loc, variable, location)
351
+ # Create a new ForwardingArgumentsNode node.
352
+ def forwarding_arguments_node(source: default_source, node_id: 0, location: default_location, flags: 0)
353
+ ForwardingArgumentsNode.new(source, node_id, location, flags)
288
354
  end
289
355
 
290
- # Create a new EnsureNode node
291
- def EnsureNode(ensure_keyword_loc, statements, end_keyword_loc, location = Location())
292
- EnsureNode.new(ensure_keyword_loc, statements, end_keyword_loc, location)
356
+ # Create a new ForwardingParameterNode node.
357
+ def forwarding_parameter_node(source: default_source, node_id: 0, location: default_location, flags: 0)
358
+ ForwardingParameterNode.new(source, node_id, location, flags)
293
359
  end
294
360
 
295
- # Create a new FalseNode node
296
- def FalseNode(location = Location())
297
- FalseNode.new(location)
361
+ # Create a new ForwardingSuperNode node.
362
+ def forwarding_super_node(source: default_source, node_id: 0, location: default_location, flags: 0, block: nil)
363
+ ForwardingSuperNode.new(source, node_id, location, flags, block)
298
364
  end
299
365
 
300
- # Create a new FindPatternNode node
301
- def FindPatternNode(constant, left, requireds, right, opening_loc, closing_loc, location = Location())
302
- FindPatternNode.new(constant, left, requireds, right, opening_loc, closing_loc, location)
366
+ # Create a new GlobalVariableAndWriteNode node.
367
+ def global_variable_and_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", name_loc: location, operator_loc: location, value: default_node(source, location))
368
+ GlobalVariableAndWriteNode.new(source, node_id, location, flags, name, name_loc, operator_loc, value)
303
369
  end
304
370
 
305
- # Create a new FlipFlopNode node
306
- def FlipFlopNode(flags, left, right, operator_loc, location = Location())
307
- FlipFlopNode.new(flags, left, right, operator_loc, location)
371
+ # Create a new GlobalVariableOperatorWriteNode node.
372
+ def global_variable_operator_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", name_loc: location, binary_operator_loc: location, value: default_node(source, location), binary_operator: :"")
373
+ GlobalVariableOperatorWriteNode.new(source, node_id, location, flags, name, name_loc, binary_operator_loc, value, binary_operator)
308
374
  end
309
375
 
310
- # Create a new FloatNode node
311
- def FloatNode(location = Location())
312
- FloatNode.new(location)
376
+ # Create a new GlobalVariableOrWriteNode node.
377
+ def global_variable_or_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", name_loc: location, operator_loc: location, value: default_node(source, location))
378
+ GlobalVariableOrWriteNode.new(source, node_id, location, flags, name, name_loc, operator_loc, value)
313
379
  end
314
380
 
315
- # Create a new ForNode node
316
- def ForNode(index, collection, statements, for_keyword_loc, in_keyword_loc, do_keyword_loc, end_keyword_loc, location = Location())
317
- ForNode.new(index, collection, statements, for_keyword_loc, in_keyword_loc, do_keyword_loc, end_keyword_loc, location)
381
+ # Create a new GlobalVariableReadNode node.
382
+ def global_variable_read_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"")
383
+ GlobalVariableReadNode.new(source, node_id, location, flags, name)
318
384
  end
319
385
 
320
- # Create a new ForwardingArgumentsNode node
321
- def ForwardingArgumentsNode(location = Location())
322
- ForwardingArgumentsNode.new(location)
386
+ # Create a new GlobalVariableTargetNode node.
387
+ def global_variable_target_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"")
388
+ GlobalVariableTargetNode.new(source, node_id, location, flags, name)
323
389
  end
324
390
 
325
- # Create a new ForwardingParameterNode node
326
- def ForwardingParameterNode(location = Location())
327
- ForwardingParameterNode.new(location)
391
+ # Create a new GlobalVariableWriteNode node.
392
+ def global_variable_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", name_loc: location, value: default_node(source, location), operator_loc: location)
393
+ GlobalVariableWriteNode.new(source, node_id, location, flags, name, name_loc, value, operator_loc)
328
394
  end
329
395
 
330
- # Create a new ForwardingSuperNode node
331
- def ForwardingSuperNode(block, location = Location())
332
- ForwardingSuperNode.new(block, location)
396
+ # Create a new HashNode node.
397
+ def hash_node(source: default_source, node_id: 0, location: default_location, flags: 0, opening_loc: location, elements: [], closing_loc: location)
398
+ HashNode.new(source, node_id, location, flags, opening_loc, elements, closing_loc)
333
399
  end
334
400
 
335
- # Create a new GlobalVariableAndWriteNode node
336
- def GlobalVariableAndWriteNode(name, name_loc, operator_loc, value, location = Location())
337
- GlobalVariableAndWriteNode.new(name, name_loc, operator_loc, value, location)
401
+ # Create a new HashPatternNode node.
402
+ def hash_pattern_node(source: default_source, node_id: 0, location: default_location, flags: 0, constant: nil, elements: [], rest: nil, opening_loc: nil, closing_loc: nil)
403
+ HashPatternNode.new(source, node_id, location, flags, constant, elements, rest, opening_loc, closing_loc)
338
404
  end
339
405
 
340
- # Create a new GlobalVariableOperatorWriteNode node
341
- def GlobalVariableOperatorWriteNode(name, name_loc, operator_loc, value, operator, location = Location())
342
- GlobalVariableOperatorWriteNode.new(name, name_loc, operator_loc, value, operator, location)
406
+ # Create a new IfNode node.
407
+ def if_node(source: default_source, node_id: 0, location: default_location, flags: 0, if_keyword_loc: nil, predicate: default_node(source, location), then_keyword_loc: nil, statements: nil, subsequent: nil, end_keyword_loc: nil)
408
+ IfNode.new(source, node_id, location, flags, if_keyword_loc, predicate, then_keyword_loc, statements, subsequent, end_keyword_loc)
343
409
  end
344
410
 
345
- # Create a new GlobalVariableOrWriteNode node
346
- def GlobalVariableOrWriteNode(name, name_loc, operator_loc, value, location = Location())
347
- GlobalVariableOrWriteNode.new(name, name_loc, operator_loc, value, location)
411
+ # Create a new ImaginaryNode node.
412
+ def imaginary_node(source: default_source, node_id: 0, location: default_location, flags: 0, numeric: float_node(source: source))
413
+ ImaginaryNode.new(source, node_id, location, flags, numeric)
348
414
  end
349
415
 
350
- # Create a new GlobalVariableReadNode node
351
- def GlobalVariableReadNode(name, location = Location())
352
- GlobalVariableReadNode.new(name, location)
416
+ # Create a new ImplicitNode node.
417
+ def implicit_node(source: default_source, node_id: 0, location: default_location, flags: 0, value: local_variable_read_node(source: source))
418
+ ImplicitNode.new(source, node_id, location, flags, value)
353
419
  end
354
420
 
355
- # Create a new GlobalVariableTargetNode node
356
- def GlobalVariableTargetNode(name, location = Location())
357
- GlobalVariableTargetNode.new(name, location)
421
+ # Create a new ImplicitRestNode node.
422
+ def implicit_rest_node(source: default_source, node_id: 0, location: default_location, flags: 0)
423
+ ImplicitRestNode.new(source, node_id, location, flags)
358
424
  end
359
425
 
360
- # Create a new GlobalVariableWriteNode node
361
- def GlobalVariableWriteNode(name, name_loc, value, operator_loc, location = Location())
362
- GlobalVariableWriteNode.new(name, name_loc, value, operator_loc, location)
426
+ # Create a new InNode node.
427
+ def in_node(source: default_source, node_id: 0, location: default_location, flags: 0, pattern: default_node(source, location), statements: nil, in_loc: location, then_loc: nil)
428
+ InNode.new(source, node_id, location, flags, pattern, statements, in_loc, then_loc)
363
429
  end
364
430
 
365
- # Create a new HashNode node
366
- def HashNode(opening_loc, elements, closing_loc, location = Location())
367
- HashNode.new(opening_loc, elements, closing_loc, location)
431
+ # Create a new IndexAndWriteNode node.
432
+ def index_and_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, receiver: nil, call_operator_loc: nil, opening_loc: location, arguments: nil, closing_loc: location, block: nil, operator_loc: location, value: default_node(source, location))
433
+ IndexAndWriteNode.new(source, node_id, location, flags, receiver, call_operator_loc, opening_loc, arguments, closing_loc, block, operator_loc, value)
368
434
  end
369
435
 
370
- # Create a new HashPatternNode node
371
- def HashPatternNode(constant, elements, rest, opening_loc, closing_loc, location = Location())
372
- HashPatternNode.new(constant, elements, rest, opening_loc, closing_loc, location)
436
+ # Create a new IndexOperatorWriteNode node.
437
+ def index_operator_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, receiver: nil, call_operator_loc: nil, opening_loc: location, arguments: nil, closing_loc: location, block: nil, binary_operator: :"", binary_operator_loc: location, value: default_node(source, location))
438
+ IndexOperatorWriteNode.new(source, node_id, location, flags, receiver, call_operator_loc, opening_loc, arguments, closing_loc, block, binary_operator, binary_operator_loc, value)
373
439
  end
374
440
 
375
- # Create a new IfNode node
376
- def IfNode(if_keyword_loc, predicate, then_keyword_loc, statements, consequent, end_keyword_loc, location = Location())
377
- IfNode.new(if_keyword_loc, predicate, then_keyword_loc, statements, consequent, end_keyword_loc, location)
441
+ # Create a new IndexOrWriteNode node.
442
+ def index_or_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, receiver: nil, call_operator_loc: nil, opening_loc: location, arguments: nil, closing_loc: location, block: nil, operator_loc: location, value: default_node(source, location))
443
+ IndexOrWriteNode.new(source, node_id, location, flags, receiver, call_operator_loc, opening_loc, arguments, closing_loc, block, operator_loc, value)
378
444
  end
379
445
 
380
- # Create a new ImaginaryNode node
381
- def ImaginaryNode(numeric, location = Location())
382
- ImaginaryNode.new(numeric, location)
446
+ # Create a new IndexTargetNode node.
447
+ def index_target_node(source: default_source, node_id: 0, location: default_location, flags: 0, receiver: default_node(source, location), opening_loc: location, arguments: nil, closing_loc: location, block: nil)
448
+ IndexTargetNode.new(source, node_id, location, flags, receiver, opening_loc, arguments, closing_loc, block)
383
449
  end
384
450
 
385
- # Create a new ImplicitNode node
386
- def ImplicitNode(value, location = Location())
387
- ImplicitNode.new(value, location)
451
+ # Create a new InstanceVariableAndWriteNode node.
452
+ def instance_variable_and_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", name_loc: location, operator_loc: location, value: default_node(source, location))
453
+ InstanceVariableAndWriteNode.new(source, node_id, location, flags, name, name_loc, operator_loc, value)
388
454
  end
389
455
 
390
- # Create a new ImplicitRestNode node
391
- def ImplicitRestNode(location = Location())
392
- ImplicitRestNode.new(location)
456
+ # Create a new InstanceVariableOperatorWriteNode node.
457
+ def instance_variable_operator_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", name_loc: location, binary_operator_loc: location, value: default_node(source, location), binary_operator: :"")
458
+ InstanceVariableOperatorWriteNode.new(source, node_id, location, flags, name, name_loc, binary_operator_loc, value, binary_operator)
393
459
  end
394
460
 
395
- # Create a new InNode node
396
- def InNode(pattern, statements, in_loc, then_loc, location = Location())
397
- InNode.new(pattern, statements, in_loc, then_loc, location)
461
+ # Create a new InstanceVariableOrWriteNode node.
462
+ def instance_variable_or_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", name_loc: location, operator_loc: location, value: default_node(source, location))
463
+ InstanceVariableOrWriteNode.new(source, node_id, location, flags, name, name_loc, operator_loc, value)
398
464
  end
399
465
 
400
- # Create a new IndexAndWriteNode node
401
- def IndexAndWriteNode(flags, receiver, call_operator_loc, opening_loc, arguments, closing_loc, block, operator_loc, value, location = Location())
402
- IndexAndWriteNode.new(flags, receiver, call_operator_loc, opening_loc, arguments, closing_loc, block, operator_loc, value, location)
466
+ # Create a new InstanceVariableReadNode node.
467
+ def instance_variable_read_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"")
468
+ InstanceVariableReadNode.new(source, node_id, location, flags, name)
403
469
  end
404
470
 
405
- # Create a new IndexOperatorWriteNode node
406
- def IndexOperatorWriteNode(flags, receiver, call_operator_loc, opening_loc, arguments, closing_loc, block, operator, operator_loc, value, location = Location())
407
- IndexOperatorWriteNode.new(flags, receiver, call_operator_loc, opening_loc, arguments, closing_loc, block, operator, operator_loc, value, location)
471
+ # Create a new InstanceVariableTargetNode node.
472
+ def instance_variable_target_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"")
473
+ InstanceVariableTargetNode.new(source, node_id, location, flags, name)
408
474
  end
409
475
 
410
- # Create a new IndexOrWriteNode node
411
- def IndexOrWriteNode(flags, receiver, call_operator_loc, opening_loc, arguments, closing_loc, block, operator_loc, value, location = Location())
412
- IndexOrWriteNode.new(flags, receiver, call_operator_loc, opening_loc, arguments, closing_loc, block, operator_loc, value, location)
476
+ # Create a new InstanceVariableWriteNode node.
477
+ def instance_variable_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", name_loc: location, value: default_node(source, location), operator_loc: location)
478
+ InstanceVariableWriteNode.new(source, node_id, location, flags, name, name_loc, value, operator_loc)
413
479
  end
414
480
 
415
- # Create a new IndexTargetNode node
416
- def IndexTargetNode(flags, receiver, opening_loc, arguments, closing_loc, block, location = Location())
417
- IndexTargetNode.new(flags, receiver, opening_loc, arguments, closing_loc, block, location)
481
+ # Create a new IntegerNode node.
482
+ def integer_node(source: default_source, node_id: 0, location: default_location, flags: 0, value: 0)
483
+ IntegerNode.new(source, node_id, location, flags, value)
418
484
  end
419
485
 
420
- # Create a new InstanceVariableAndWriteNode node
421
- def InstanceVariableAndWriteNode(name, name_loc, operator_loc, value, location = Location())
422
- InstanceVariableAndWriteNode.new(name, name_loc, operator_loc, value, location)
486
+ # Create a new InterpolatedMatchLastLineNode node.
487
+ def interpolated_match_last_line_node(source: default_source, node_id: 0, location: default_location, flags: 0, opening_loc: location, parts: [], closing_loc: location)
488
+ InterpolatedMatchLastLineNode.new(source, node_id, location, flags, opening_loc, parts, closing_loc)
423
489
  end
424
490
 
425
- # Create a new InstanceVariableOperatorWriteNode node
426
- def InstanceVariableOperatorWriteNode(name, name_loc, operator_loc, value, operator, location = Location())
427
- InstanceVariableOperatorWriteNode.new(name, name_loc, operator_loc, value, operator, location)
491
+ # Create a new InterpolatedRegularExpressionNode node.
492
+ def interpolated_regular_expression_node(source: default_source, node_id: 0, location: default_location, flags: 0, opening_loc: location, parts: [], closing_loc: location)
493
+ InterpolatedRegularExpressionNode.new(source, node_id, location, flags, opening_loc, parts, closing_loc)
428
494
  end
429
495
 
430
- # Create a new InstanceVariableOrWriteNode node
431
- def InstanceVariableOrWriteNode(name, name_loc, operator_loc, value, location = Location())
432
- InstanceVariableOrWriteNode.new(name, name_loc, operator_loc, value, location)
496
+ # Create a new InterpolatedStringNode node.
497
+ def interpolated_string_node(source: default_source, node_id: 0, location: default_location, flags: 0, opening_loc: nil, parts: [], closing_loc: nil)
498
+ InterpolatedStringNode.new(source, node_id, location, flags, opening_loc, parts, closing_loc)
433
499
  end
434
500
 
435
- # Create a new InstanceVariableReadNode node
436
- def InstanceVariableReadNode(name, location = Location())
437
- InstanceVariableReadNode.new(name, location)
501
+ # Create a new InterpolatedSymbolNode node.
502
+ def interpolated_symbol_node(source: default_source, node_id: 0, location: default_location, flags: 0, opening_loc: nil, parts: [], closing_loc: nil)
503
+ InterpolatedSymbolNode.new(source, node_id, location, flags, opening_loc, parts, closing_loc)
438
504
  end
439
505
 
440
- # Create a new InstanceVariableTargetNode node
441
- def InstanceVariableTargetNode(name, location = Location())
442
- InstanceVariableTargetNode.new(name, location)
506
+ # Create a new InterpolatedXStringNode node.
507
+ def interpolated_x_string_node(source: default_source, node_id: 0, location: default_location, flags: 0, opening_loc: location, parts: [], closing_loc: location)
508
+ InterpolatedXStringNode.new(source, node_id, location, flags, opening_loc, parts, closing_loc)
443
509
  end
444
510
 
445
- # Create a new InstanceVariableWriteNode node
446
- def InstanceVariableWriteNode(name, name_loc, value, operator_loc, location = Location())
447
- InstanceVariableWriteNode.new(name, name_loc, value, operator_loc, location)
511
+ # Create a new ItLocalVariableReadNode node.
512
+ def it_local_variable_read_node(source: default_source, node_id: 0, location: default_location, flags: 0)
513
+ ItLocalVariableReadNode.new(source, node_id, location, flags)
448
514
  end
449
515
 
450
- # Create a new IntegerNode node
451
- def IntegerNode(flags, location = Location())
452
- IntegerNode.new(flags, location)
516
+ # Create a new ItParametersNode node.
517
+ def it_parameters_node(source: default_source, node_id: 0, location: default_location, flags: 0)
518
+ ItParametersNode.new(source, node_id, location, flags)
453
519
  end
454
520
 
455
- # Create a new InterpolatedMatchLastLineNode node
456
- def InterpolatedMatchLastLineNode(flags, opening_loc, parts, closing_loc, location = Location())
457
- InterpolatedMatchLastLineNode.new(flags, opening_loc, parts, closing_loc, location)
521
+ # Create a new KeywordHashNode node.
522
+ def keyword_hash_node(source: default_source, node_id: 0, location: default_location, flags: 0, elements: [])
523
+ KeywordHashNode.new(source, node_id, location, flags, elements)
458
524
  end
459
525
 
460
- # Create a new InterpolatedRegularExpressionNode node
461
- def InterpolatedRegularExpressionNode(flags, opening_loc, parts, closing_loc, location = Location())
462
- InterpolatedRegularExpressionNode.new(flags, opening_loc, parts, closing_loc, location)
526
+ # Create a new KeywordRestParameterNode node.
527
+ def keyword_rest_parameter_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: nil, name_loc: nil, operator_loc: location)
528
+ KeywordRestParameterNode.new(source, node_id, location, flags, name, name_loc, operator_loc)
463
529
  end
464
530
 
465
- # Create a new InterpolatedStringNode node
466
- def InterpolatedStringNode(opening_loc, parts, closing_loc, location = Location())
467
- InterpolatedStringNode.new(opening_loc, parts, closing_loc, location)
531
+ # Create a new LambdaNode node.
532
+ def lambda_node(source: default_source, node_id: 0, location: default_location, flags: 0, locals: [], operator_loc: location, opening_loc: location, closing_loc: location, parameters: nil, body: nil)
533
+ LambdaNode.new(source, node_id, location, flags, locals, operator_loc, opening_loc, closing_loc, parameters, body)
468
534
  end
469
535
 
470
- # Create a new InterpolatedSymbolNode node
471
- def InterpolatedSymbolNode(opening_loc, parts, closing_loc, location = Location())
472
- InterpolatedSymbolNode.new(opening_loc, parts, closing_loc, location)
536
+ # Create a new LocalVariableAndWriteNode node.
537
+ def local_variable_and_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, name_loc: location, operator_loc: location, value: default_node(source, location), name: :"", depth: 0)
538
+ LocalVariableAndWriteNode.new(source, node_id, location, flags, name_loc, operator_loc, value, name, depth)
473
539
  end
474
540
 
475
- # Create a new InterpolatedXStringNode node
476
- def InterpolatedXStringNode(opening_loc, parts, closing_loc, location = Location())
477
- InterpolatedXStringNode.new(opening_loc, parts, closing_loc, location)
541
+ # Create a new LocalVariableOperatorWriteNode node.
542
+ def local_variable_operator_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, name_loc: location, binary_operator_loc: location, value: default_node(source, location), name: :"", binary_operator: :"", depth: 0)
543
+ LocalVariableOperatorWriteNode.new(source, node_id, location, flags, name_loc, binary_operator_loc, value, name, binary_operator, depth)
478
544
  end
479
545
 
480
- # Create a new KeywordHashNode node
481
- def KeywordHashNode(flags, elements, location = Location())
482
- KeywordHashNode.new(flags, elements, location)
546
+ # Create a new LocalVariableOrWriteNode node.
547
+ def local_variable_or_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, name_loc: location, operator_loc: location, value: default_node(source, location), name: :"", depth: 0)
548
+ LocalVariableOrWriteNode.new(source, node_id, location, flags, name_loc, operator_loc, value, name, depth)
483
549
  end
484
550
 
485
- # Create a new KeywordRestParameterNode node
486
- def KeywordRestParameterNode(flags, name, name_loc, operator_loc, location = Location())
487
- KeywordRestParameterNode.new(flags, name, name_loc, operator_loc, location)
551
+ # Create a new LocalVariableReadNode node.
552
+ def local_variable_read_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", depth: 0)
553
+ LocalVariableReadNode.new(source, node_id, location, flags, name, depth)
488
554
  end
489
555
 
490
- # Create a new LambdaNode node
491
- def LambdaNode(locals, operator_loc, opening_loc, closing_loc, parameters, body, location = Location())
492
- LambdaNode.new(locals, operator_loc, opening_loc, closing_loc, parameters, body, location)
556
+ # Create a new LocalVariableTargetNode node.
557
+ def local_variable_target_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", depth: 0)
558
+ LocalVariableTargetNode.new(source, node_id, location, flags, name, depth)
493
559
  end
494
560
 
495
- # Create a new LocalVariableAndWriteNode node
496
- def LocalVariableAndWriteNode(name_loc, operator_loc, value, name, depth, location = Location())
497
- LocalVariableAndWriteNode.new(name_loc, operator_loc, value, name, depth, location)
561
+ # Create a new LocalVariableWriteNode node.
562
+ def local_variable_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", depth: 0, name_loc: location, value: default_node(source, location), operator_loc: location)
563
+ LocalVariableWriteNode.new(source, node_id, location, flags, name, depth, name_loc, value, operator_loc)
498
564
  end
499
565
 
500
- # Create a new LocalVariableOperatorWriteNode node
501
- def LocalVariableOperatorWriteNode(name_loc, operator_loc, value, name, operator, depth, location = Location())
502
- LocalVariableOperatorWriteNode.new(name_loc, operator_loc, value, name, operator, depth, location)
566
+ # Create a new MatchLastLineNode node.
567
+ def match_last_line_node(source: default_source, node_id: 0, location: default_location, flags: 0, opening_loc: location, content_loc: location, closing_loc: location, unescaped: "")
568
+ MatchLastLineNode.new(source, node_id, location, flags, opening_loc, content_loc, closing_loc, unescaped)
503
569
  end
504
570
 
505
- # Create a new LocalVariableOrWriteNode node
506
- def LocalVariableOrWriteNode(name_loc, operator_loc, value, name, depth, location = Location())
507
- LocalVariableOrWriteNode.new(name_loc, operator_loc, value, name, depth, location)
571
+ # Create a new MatchPredicateNode node.
572
+ def match_predicate_node(source: default_source, node_id: 0, location: default_location, flags: 0, value: default_node(source, location), pattern: default_node(source, location), operator_loc: location)
573
+ MatchPredicateNode.new(source, node_id, location, flags, value, pattern, operator_loc)
508
574
  end
509
575
 
510
- # Create a new LocalVariableReadNode node
511
- def LocalVariableReadNode(name, depth, location = Location())
512
- LocalVariableReadNode.new(name, depth, location)
576
+ # Create a new MatchRequiredNode node.
577
+ def match_required_node(source: default_source, node_id: 0, location: default_location, flags: 0, value: default_node(source, location), pattern: default_node(source, location), operator_loc: location)
578
+ MatchRequiredNode.new(source, node_id, location, flags, value, pattern, operator_loc)
513
579
  end
514
580
 
515
- # Create a new LocalVariableTargetNode node
516
- def LocalVariableTargetNode(name, depth, location = Location())
517
- LocalVariableTargetNode.new(name, depth, location)
581
+ # Create a new MatchWriteNode node.
582
+ def match_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, call: call_node(source: source), targets: [])
583
+ MatchWriteNode.new(source, node_id, location, flags, call, targets)
518
584
  end
519
585
 
520
- # Create a new LocalVariableWriteNode node
521
- def LocalVariableWriteNode(name, depth, name_loc, value, operator_loc, location = Location())
522
- LocalVariableWriteNode.new(name, depth, name_loc, value, operator_loc, location)
586
+ # Create a new MissingNode node.
587
+ def missing_node(source: default_source, node_id: 0, location: default_location, flags: 0)
588
+ MissingNode.new(source, node_id, location, flags)
523
589
  end
524
590
 
525
- # Create a new MatchLastLineNode node
526
- def MatchLastLineNode(flags, opening_loc, content_loc, closing_loc, unescaped, location = Location())
527
- MatchLastLineNode.new(flags, opening_loc, content_loc, closing_loc, unescaped, location)
591
+ # Create a new ModuleNode node.
592
+ def module_node(source: default_source, node_id: 0, location: default_location, flags: 0, locals: [], module_keyword_loc: location, constant_path: constant_read_node(source: source), body: nil, end_keyword_loc: location, name: :"")
593
+ ModuleNode.new(source, node_id, location, flags, locals, module_keyword_loc, constant_path, body, end_keyword_loc, name)
528
594
  end
529
595
 
530
- # Create a new MatchPredicateNode node
531
- def MatchPredicateNode(value, pattern, operator_loc, location = Location())
532
- MatchPredicateNode.new(value, pattern, operator_loc, location)
596
+ # Create a new MultiTargetNode node.
597
+ def multi_target_node(source: default_source, node_id: 0, location: default_location, flags: 0, lefts: [], rest: nil, rights: [], lparen_loc: nil, rparen_loc: nil)
598
+ MultiTargetNode.new(source, node_id, location, flags, lefts, rest, rights, lparen_loc, rparen_loc)
533
599
  end
534
600
 
535
- # Create a new MatchRequiredNode node
536
- def MatchRequiredNode(value, pattern, operator_loc, location = Location())
537
- MatchRequiredNode.new(value, pattern, operator_loc, location)
601
+ # Create a new MultiWriteNode node.
602
+ def multi_write_node(source: default_source, node_id: 0, location: default_location, flags: 0, lefts: [], rest: nil, rights: [], lparen_loc: nil, rparen_loc: nil, operator_loc: location, value: default_node(source, location))
603
+ MultiWriteNode.new(source, node_id, location, flags, lefts, rest, rights, lparen_loc, rparen_loc, operator_loc, value)
538
604
  end
539
605
 
540
- # Create a new MatchWriteNode node
541
- def MatchWriteNode(call, targets, location = Location())
542
- MatchWriteNode.new(call, targets, location)
606
+ # Create a new NextNode node.
607
+ def next_node(source: default_source, node_id: 0, location: default_location, flags: 0, arguments: nil, keyword_loc: location)
608
+ NextNode.new(source, node_id, location, flags, arguments, keyword_loc)
543
609
  end
544
610
 
545
- # Create a new MissingNode node
546
- def MissingNode(location = Location())
547
- MissingNode.new(location)
611
+ # Create a new NilNode node.
612
+ def nil_node(source: default_source, node_id: 0, location: default_location, flags: 0)
613
+ NilNode.new(source, node_id, location, flags)
548
614
  end
549
615
 
550
- # Create a new ModuleNode node
551
- def ModuleNode(locals, module_keyword_loc, constant_path, body, end_keyword_loc, name, location = Location())
552
- ModuleNode.new(locals, module_keyword_loc, constant_path, body, end_keyword_loc, name, location)
616
+ # Create a new NoKeywordsParameterNode node.
617
+ def no_keywords_parameter_node(source: default_source, node_id: 0, location: default_location, flags: 0, operator_loc: location, keyword_loc: location)
618
+ NoKeywordsParameterNode.new(source, node_id, location, flags, operator_loc, keyword_loc)
553
619
  end
554
620
 
555
- # Create a new MultiTargetNode node
556
- def MultiTargetNode(lefts, rest, rights, lparen_loc, rparen_loc, location = Location())
557
- MultiTargetNode.new(lefts, rest, rights, lparen_loc, rparen_loc, location)
621
+ # Create a new NumberedParametersNode node.
622
+ def numbered_parameters_node(source: default_source, node_id: 0, location: default_location, flags: 0, maximum: 0)
623
+ NumberedParametersNode.new(source, node_id, location, flags, maximum)
558
624
  end
559
625
 
560
- # Create a new MultiWriteNode node
561
- def MultiWriteNode(lefts, rest, rights, lparen_loc, rparen_loc, operator_loc, value, location = Location())
562
- MultiWriteNode.new(lefts, rest, rights, lparen_loc, rparen_loc, operator_loc, value, location)
626
+ # Create a new NumberedReferenceReadNode node.
627
+ def numbered_reference_read_node(source: default_source, node_id: 0, location: default_location, flags: 0, number: 0)
628
+ NumberedReferenceReadNode.new(source, node_id, location, flags, number)
563
629
  end
564
630
 
565
- # Create a new NextNode node
566
- def NextNode(arguments, keyword_loc, location = Location())
567
- NextNode.new(arguments, keyword_loc, location)
631
+ # Create a new OptionalKeywordParameterNode node.
632
+ def optional_keyword_parameter_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", name_loc: location, value: default_node(source, location))
633
+ OptionalKeywordParameterNode.new(source, node_id, location, flags, name, name_loc, value)
568
634
  end
569
635
 
570
- # Create a new NilNode node
571
- def NilNode(location = Location())
572
- NilNode.new(location)
636
+ # Create a new OptionalParameterNode node.
637
+ def optional_parameter_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", name_loc: location, operator_loc: location, value: default_node(source, location))
638
+ OptionalParameterNode.new(source, node_id, location, flags, name, name_loc, operator_loc, value)
573
639
  end
574
640
 
575
- # Create a new NoKeywordsParameterNode node
576
- def NoKeywordsParameterNode(operator_loc, keyword_loc, location = Location())
577
- NoKeywordsParameterNode.new(operator_loc, keyword_loc, location)
641
+ # Create a new OrNode node.
642
+ def or_node(source: default_source, node_id: 0, location: default_location, flags: 0, left: default_node(source, location), right: default_node(source, location), operator_loc: location)
643
+ OrNode.new(source, node_id, location, flags, left, right, operator_loc)
578
644
  end
579
645
 
580
- # Create a new NumberedParametersNode node
581
- def NumberedParametersNode(maximum, location = Location())
582
- NumberedParametersNode.new(maximum, location)
646
+ # Create a new ParametersNode node.
647
+ def parameters_node(source: default_source, node_id: 0, location: default_location, flags: 0, requireds: [], optionals: [], rest: nil, posts: [], keywords: [], keyword_rest: nil, block: nil)
648
+ ParametersNode.new(source, node_id, location, flags, requireds, optionals, rest, posts, keywords, keyword_rest, block)
583
649
  end
584
650
 
585
- # Create a new NumberedReferenceReadNode node
586
- def NumberedReferenceReadNode(number, location = Location())
587
- NumberedReferenceReadNode.new(number, location)
651
+ # Create a new ParenthesesNode node.
652
+ def parentheses_node(source: default_source, node_id: 0, location: default_location, flags: 0, body: nil, opening_loc: location, closing_loc: location)
653
+ ParenthesesNode.new(source, node_id, location, flags, body, opening_loc, closing_loc)
588
654
  end
589
655
 
590
- # Create a new OptionalKeywordParameterNode node
591
- def OptionalKeywordParameterNode(flags, name, name_loc, value, location = Location())
592
- OptionalKeywordParameterNode.new(flags, name, name_loc, value, location)
656
+ # Create a new PinnedExpressionNode node.
657
+ def pinned_expression_node(source: default_source, node_id: 0, location: default_location, flags: 0, expression: default_node(source, location), operator_loc: location, lparen_loc: location, rparen_loc: location)
658
+ PinnedExpressionNode.new(source, node_id, location, flags, expression, operator_loc, lparen_loc, rparen_loc)
593
659
  end
594
660
 
595
- # Create a new OptionalParameterNode node
596
- def OptionalParameterNode(flags, name, name_loc, operator_loc, value, location = Location())
597
- OptionalParameterNode.new(flags, name, name_loc, operator_loc, value, location)
661
+ # Create a new PinnedVariableNode node.
662
+ def pinned_variable_node(source: default_source, node_id: 0, location: default_location, flags: 0, variable: local_variable_read_node(source: source), operator_loc: location)
663
+ PinnedVariableNode.new(source, node_id, location, flags, variable, operator_loc)
598
664
  end
599
665
 
600
- # Create a new OrNode node
601
- def OrNode(left, right, operator_loc, location = Location())
602
- OrNode.new(left, right, operator_loc, location)
666
+ # Create a new PostExecutionNode node.
667
+ def post_execution_node(source: default_source, node_id: 0, location: default_location, flags: 0, statements: nil, keyword_loc: location, opening_loc: location, closing_loc: location)
668
+ PostExecutionNode.new(source, node_id, location, flags, statements, keyword_loc, opening_loc, closing_loc)
603
669
  end
604
670
 
605
- # Create a new ParametersNode node
606
- def ParametersNode(requireds, optionals, rest, posts, keywords, keyword_rest, block, location = Location())
607
- ParametersNode.new(requireds, optionals, rest, posts, keywords, keyword_rest, block, location)
671
+ # Create a new PreExecutionNode node.
672
+ def pre_execution_node(source: default_source, node_id: 0, location: default_location, flags: 0, statements: nil, keyword_loc: location, opening_loc: location, closing_loc: location)
673
+ PreExecutionNode.new(source, node_id, location, flags, statements, keyword_loc, opening_loc, closing_loc)
608
674
  end
609
675
 
610
- # Create a new ParenthesesNode node
611
- def ParenthesesNode(body, opening_loc, closing_loc, location = Location())
612
- ParenthesesNode.new(body, opening_loc, closing_loc, location)
676
+ # Create a new ProgramNode node.
677
+ def program_node(source: default_source, node_id: 0, location: default_location, flags: 0, locals: [], statements: statements_node(source: source))
678
+ ProgramNode.new(source, node_id, location, flags, locals, statements)
613
679
  end
614
680
 
615
- # Create a new PinnedExpressionNode node
616
- def PinnedExpressionNode(expression, operator_loc, lparen_loc, rparen_loc, location = Location())
617
- PinnedExpressionNode.new(expression, operator_loc, lparen_loc, rparen_loc, location)
681
+ # Create a new RangeNode node.
682
+ def range_node(source: default_source, node_id: 0, location: default_location, flags: 0, left: nil, right: nil, operator_loc: location)
683
+ RangeNode.new(source, node_id, location, flags, left, right, operator_loc)
618
684
  end
619
685
 
620
- # Create a new PinnedVariableNode node
621
- def PinnedVariableNode(variable, operator_loc, location = Location())
622
- PinnedVariableNode.new(variable, operator_loc, location)
686
+ # Create a new RationalNode node.
687
+ def rational_node(source: default_source, node_id: 0, location: default_location, flags: 0, numerator: 0, denominator: 0)
688
+ RationalNode.new(source, node_id, location, flags, numerator, denominator)
623
689
  end
624
690
 
625
- # Create a new PostExecutionNode node
626
- def PostExecutionNode(statements, keyword_loc, opening_loc, closing_loc, location = Location())
627
- PostExecutionNode.new(statements, keyword_loc, opening_loc, closing_loc, location)
691
+ # Create a new RedoNode node.
692
+ def redo_node(source: default_source, node_id: 0, location: default_location, flags: 0)
693
+ RedoNode.new(source, node_id, location, flags)
628
694
  end
629
695
 
630
- # Create a new PreExecutionNode node
631
- def PreExecutionNode(statements, keyword_loc, opening_loc, closing_loc, location = Location())
632
- PreExecutionNode.new(statements, keyword_loc, opening_loc, closing_loc, location)
696
+ # Create a new RegularExpressionNode node.
697
+ def regular_expression_node(source: default_source, node_id: 0, location: default_location, flags: 0, opening_loc: location, content_loc: location, closing_loc: location, unescaped: "")
698
+ RegularExpressionNode.new(source, node_id, location, flags, opening_loc, content_loc, closing_loc, unescaped)
633
699
  end
634
700
 
635
- # Create a new ProgramNode node
636
- def ProgramNode(locals, statements, location = Location())
637
- ProgramNode.new(locals, statements, location)
701
+ # Create a new RequiredKeywordParameterNode node.
702
+ def required_keyword_parameter_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"", name_loc: location)
703
+ RequiredKeywordParameterNode.new(source, node_id, location, flags, name, name_loc)
638
704
  end
639
705
 
640
- # Create a new RangeNode node
641
- def RangeNode(flags, left, right, operator_loc, location = Location())
642
- RangeNode.new(flags, left, right, operator_loc, location)
706
+ # Create a new RequiredParameterNode node.
707
+ def required_parameter_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: :"")
708
+ RequiredParameterNode.new(source, node_id, location, flags, name)
643
709
  end
644
710
 
645
- # Create a new RationalNode node
646
- def RationalNode(numeric, location = Location())
647
- RationalNode.new(numeric, location)
711
+ # Create a new RescueModifierNode node.
712
+ def rescue_modifier_node(source: default_source, node_id: 0, location: default_location, flags: 0, expression: default_node(source, location), keyword_loc: location, rescue_expression: default_node(source, location))
713
+ RescueModifierNode.new(source, node_id, location, flags, expression, keyword_loc, rescue_expression)
648
714
  end
649
715
 
650
- # Create a new RedoNode node
651
- def RedoNode(location = Location())
652
- RedoNode.new(location)
716
+ # Create a new RescueNode node.
717
+ def rescue_node(source: default_source, node_id: 0, location: default_location, flags: 0, keyword_loc: location, exceptions: [], operator_loc: nil, reference: nil, then_keyword_loc: nil, statements: nil, subsequent: nil)
718
+ RescueNode.new(source, node_id, location, flags, keyword_loc, exceptions, operator_loc, reference, then_keyword_loc, statements, subsequent)
653
719
  end
654
720
 
655
- # Create a new RegularExpressionNode node
656
- def RegularExpressionNode(flags, opening_loc, content_loc, closing_loc, unescaped, location = Location())
657
- RegularExpressionNode.new(flags, opening_loc, content_loc, closing_loc, unescaped, location)
721
+ # Create a new RestParameterNode node.
722
+ def rest_parameter_node(source: default_source, node_id: 0, location: default_location, flags: 0, name: nil, name_loc: nil, operator_loc: location)
723
+ RestParameterNode.new(source, node_id, location, flags, name, name_loc, operator_loc)
658
724
  end
659
725
 
660
- # Create a new RequiredKeywordParameterNode node
661
- def RequiredKeywordParameterNode(flags, name, name_loc, location = Location())
662
- RequiredKeywordParameterNode.new(flags, name, name_loc, location)
726
+ # Create a new RetryNode node.
727
+ def retry_node(source: default_source, node_id: 0, location: default_location, flags: 0)
728
+ RetryNode.new(source, node_id, location, flags)
663
729
  end
664
730
 
665
- # Create a new RequiredParameterNode node
666
- def RequiredParameterNode(flags, name, location = Location())
667
- RequiredParameterNode.new(flags, name, location)
731
+ # Create a new ReturnNode node.
732
+ def return_node(source: default_source, node_id: 0, location: default_location, flags: 0, keyword_loc: location, arguments: nil)
733
+ ReturnNode.new(source, node_id, location, flags, keyword_loc, arguments)
668
734
  end
669
735
 
670
- # Create a new RescueModifierNode node
671
- def RescueModifierNode(expression, keyword_loc, rescue_expression, location = Location())
672
- RescueModifierNode.new(expression, keyword_loc, rescue_expression, location)
736
+ # Create a new SelfNode node.
737
+ def self_node(source: default_source, node_id: 0, location: default_location, flags: 0)
738
+ SelfNode.new(source, node_id, location, flags)
673
739
  end
674
740
 
675
- # Create a new RescueNode node
676
- def RescueNode(keyword_loc, exceptions, operator_loc, reference, statements, consequent, location = Location())
677
- RescueNode.new(keyword_loc, exceptions, operator_loc, reference, statements, consequent, location)
741
+ # Create a new ShareableConstantNode node.
742
+ def shareable_constant_node(source: default_source, node_id: 0, location: default_location, flags: 0, write: constant_write_node(source: source))
743
+ ShareableConstantNode.new(source, node_id, location, flags, write)
678
744
  end
679
745
 
680
- # Create a new RestParameterNode node
681
- def RestParameterNode(flags, name, name_loc, operator_loc, location = Location())
682
- RestParameterNode.new(flags, name, name_loc, operator_loc, location)
746
+ # Create a new SingletonClassNode node.
747
+ def singleton_class_node(source: default_source, node_id: 0, location: default_location, flags: 0, locals: [], class_keyword_loc: location, operator_loc: location, expression: default_node(source, location), body: nil, end_keyword_loc: location)
748
+ SingletonClassNode.new(source, node_id, location, flags, locals, class_keyword_loc, operator_loc, expression, body, end_keyword_loc)
683
749
  end
684
750
 
685
- # Create a new RetryNode node
686
- def RetryNode(location = Location())
687
- RetryNode.new(location)
751
+ # Create a new SourceEncodingNode node.
752
+ def source_encoding_node(source: default_source, node_id: 0, location: default_location, flags: 0)
753
+ SourceEncodingNode.new(source, node_id, location, flags)
688
754
  end
689
755
 
690
- # Create a new ReturnNode node
691
- def ReturnNode(keyword_loc, arguments, location = Location())
692
- ReturnNode.new(keyword_loc, arguments, location)
756
+ # Create a new SourceFileNode node.
757
+ def source_file_node(source: default_source, node_id: 0, location: default_location, flags: 0, filepath: "")
758
+ SourceFileNode.new(source, node_id, location, flags, filepath)
693
759
  end
694
760
 
695
- # Create a new SelfNode node
696
- def SelfNode(location = Location())
697
- SelfNode.new(location)
761
+ # Create a new SourceLineNode node.
762
+ def source_line_node(source: default_source, node_id: 0, location: default_location, flags: 0)
763
+ SourceLineNode.new(source, node_id, location, flags)
698
764
  end
699
765
 
700
- # Create a new SingletonClassNode node
701
- def SingletonClassNode(locals, class_keyword_loc, operator_loc, expression, body, end_keyword_loc, location = Location())
702
- SingletonClassNode.new(locals, class_keyword_loc, operator_loc, expression, body, end_keyword_loc, location)
766
+ # Create a new SplatNode node.
767
+ def splat_node(source: default_source, node_id: 0, location: default_location, flags: 0, operator_loc: location, expression: nil)
768
+ SplatNode.new(source, node_id, location, flags, operator_loc, expression)
703
769
  end
704
770
 
705
- # Create a new SourceEncodingNode node
706
- def SourceEncodingNode(location = Location())
707
- SourceEncodingNode.new(location)
771
+ # Create a new StatementsNode node.
772
+ def statements_node(source: default_source, node_id: 0, location: default_location, flags: 0, body: [])
773
+ StatementsNode.new(source, node_id, location, flags, body)
708
774
  end
709
775
 
710
- # Create a new SourceFileNode node
711
- def SourceFileNode(filepath, location = Location())
712
- SourceFileNode.new(filepath, location)
776
+ # Create a new StringNode node.
777
+ def string_node(source: default_source, node_id: 0, location: default_location, flags: 0, opening_loc: nil, content_loc: location, closing_loc: nil, unescaped: "")
778
+ StringNode.new(source, node_id, location, flags, opening_loc, content_loc, closing_loc, unescaped)
713
779
  end
714
780
 
715
- # Create a new SourceLineNode node
716
- def SourceLineNode(location = Location())
717
- SourceLineNode.new(location)
781
+ # Create a new SuperNode node.
782
+ def super_node(source: default_source, node_id: 0, location: default_location, flags: 0, keyword_loc: location, lparen_loc: nil, arguments: nil, rparen_loc: nil, block: nil)
783
+ SuperNode.new(source, node_id, location, flags, keyword_loc, lparen_loc, arguments, rparen_loc, block)
718
784
  end
719
785
 
720
- # Create a new SplatNode node
721
- def SplatNode(operator_loc, expression, location = Location())
722
- SplatNode.new(operator_loc, expression, location)
786
+ # Create a new SymbolNode node.
787
+ def symbol_node(source: default_source, node_id: 0, location: default_location, flags: 0, opening_loc: nil, value_loc: nil, closing_loc: nil, unescaped: "")
788
+ SymbolNode.new(source, node_id, location, flags, opening_loc, value_loc, closing_loc, unescaped)
723
789
  end
724
790
 
725
- # Create a new StatementsNode node
726
- def StatementsNode(body, location = Location())
727
- StatementsNode.new(body, location)
791
+ # Create a new TrueNode node.
792
+ def true_node(source: default_source, node_id: 0, location: default_location, flags: 0)
793
+ TrueNode.new(source, node_id, location, flags)
728
794
  end
729
795
 
730
- # Create a new StringNode node
731
- def StringNode(flags, opening_loc, content_loc, closing_loc, unescaped, location = Location())
732
- StringNode.new(flags, opening_loc, content_loc, closing_loc, unescaped, location)
796
+ # Create a new UndefNode node.
797
+ def undef_node(source: default_source, node_id: 0, location: default_location, flags: 0, names: [], keyword_loc: location)
798
+ UndefNode.new(source, node_id, location, flags, names, keyword_loc)
733
799
  end
734
800
 
735
- # Create a new SuperNode node
736
- def SuperNode(keyword_loc, lparen_loc, arguments, rparen_loc, block, location = Location())
737
- SuperNode.new(keyword_loc, lparen_loc, arguments, rparen_loc, block, location)
801
+ # Create a new UnlessNode node.
802
+ def unless_node(source: default_source, node_id: 0, location: default_location, flags: 0, keyword_loc: location, predicate: default_node(source, location), then_keyword_loc: nil, statements: nil, else_clause: nil, end_keyword_loc: nil)
803
+ UnlessNode.new(source, node_id, location, flags, keyword_loc, predicate, then_keyword_loc, statements, else_clause, end_keyword_loc)
738
804
  end
739
805
 
740
- # Create a new SymbolNode node
741
- def SymbolNode(flags, opening_loc, value_loc, closing_loc, unescaped, location = Location())
742
- SymbolNode.new(flags, opening_loc, value_loc, closing_loc, unescaped, location)
806
+ # Create a new UntilNode node.
807
+ def until_node(source: default_source, node_id: 0, location: default_location, flags: 0, keyword_loc: location, do_keyword_loc: nil, closing_loc: nil, predicate: default_node(source, location), statements: nil)
808
+ UntilNode.new(source, node_id, location, flags, keyword_loc, do_keyword_loc, closing_loc, predicate, statements)
743
809
  end
744
810
 
745
- # Create a new TrueNode node
746
- def TrueNode(location = Location())
747
- TrueNode.new(location)
811
+ # Create a new WhenNode node.
812
+ def when_node(source: default_source, node_id: 0, location: default_location, flags: 0, keyword_loc: location, conditions: [], then_keyword_loc: nil, statements: nil)
813
+ WhenNode.new(source, node_id, location, flags, keyword_loc, conditions, then_keyword_loc, statements)
748
814
  end
749
815
 
750
- # Create a new UndefNode node
751
- def UndefNode(names, keyword_loc, location = Location())
752
- UndefNode.new(names, keyword_loc, location)
816
+ # Create a new WhileNode node.
817
+ def while_node(source: default_source, node_id: 0, location: default_location, flags: 0, keyword_loc: location, do_keyword_loc: nil, closing_loc: nil, predicate: default_node(source, location), statements: nil)
818
+ WhileNode.new(source, node_id, location, flags, keyword_loc, do_keyword_loc, closing_loc, predicate, statements)
753
819
  end
754
820
 
755
- # Create a new UnlessNode node
756
- def UnlessNode(keyword_loc, predicate, then_keyword_loc, statements, consequent, end_keyword_loc, location = Location())
757
- UnlessNode.new(keyword_loc, predicate, then_keyword_loc, statements, consequent, end_keyword_loc, location)
821
+ # Create a new XStringNode node.
822
+ def x_string_node(source: default_source, node_id: 0, location: default_location, flags: 0, opening_loc: location, content_loc: location, closing_loc: location, unescaped: "")
823
+ XStringNode.new(source, node_id, location, flags, opening_loc, content_loc, closing_loc, unescaped)
758
824
  end
759
825
 
760
- # Create a new UntilNode node
761
- def UntilNode(flags, keyword_loc, closing_loc, predicate, statements, location = Location())
762
- UntilNode.new(flags, keyword_loc, closing_loc, predicate, statements, location)
826
+ # Create a new YieldNode node.
827
+ def yield_node(source: default_source, node_id: 0, location: default_location, flags: 0, keyword_loc: location, lparen_loc: nil, arguments: nil, rparen_loc: nil)
828
+ YieldNode.new(source, node_id, location, flags, keyword_loc, lparen_loc, arguments, rparen_loc)
763
829
  end
764
830
 
765
- # Create a new WhenNode node
766
- def WhenNode(keyword_loc, conditions, statements, location = Location())
767
- WhenNode.new(keyword_loc, conditions, statements, location)
831
+ # Retrieve the value of one of the ArgumentsNodeFlags flags.
832
+ def arguments_node_flag(name)
833
+ case name
834
+ when :contains_forwarding then ArgumentsNodeFlags::CONTAINS_FORWARDING
835
+ when :contains_keywords then ArgumentsNodeFlags::CONTAINS_KEYWORDS
836
+ when :contains_keyword_splat then ArgumentsNodeFlags::CONTAINS_KEYWORD_SPLAT
837
+ when :contains_splat then ArgumentsNodeFlags::CONTAINS_SPLAT
838
+ when :contains_multiple_splats then ArgumentsNodeFlags::CONTAINS_MULTIPLE_SPLATS
839
+ else Kernel.raise ArgumentError, "invalid ArgumentsNodeFlags flag: #{name.inspect}"
840
+ end
768
841
  end
769
842
 
770
- # Create a new WhileNode node
771
- def WhileNode(flags, keyword_loc, closing_loc, predicate, statements, location = Location())
772
- WhileNode.new(flags, keyword_loc, closing_loc, predicate, statements, location)
843
+ # Retrieve the value of one of the ArrayNodeFlags flags.
844
+ def array_node_flag(name)
845
+ case name
846
+ when :contains_splat then ArrayNodeFlags::CONTAINS_SPLAT
847
+ else Kernel.raise ArgumentError, "invalid ArrayNodeFlags flag: #{name.inspect}"
848
+ end
849
+ end
850
+
851
+ # Retrieve the value of one of the CallNodeFlags flags.
852
+ def call_node_flag(name)
853
+ case name
854
+ when :safe_navigation then CallNodeFlags::SAFE_NAVIGATION
855
+ when :variable_call then CallNodeFlags::VARIABLE_CALL
856
+ when :attribute_write then CallNodeFlags::ATTRIBUTE_WRITE
857
+ when :ignore_visibility then CallNodeFlags::IGNORE_VISIBILITY
858
+ else Kernel.raise ArgumentError, "invalid CallNodeFlags flag: #{name.inspect}"
859
+ end
860
+ end
861
+
862
+ # Retrieve the value of one of the EncodingFlags flags.
863
+ def encoding_flag(name)
864
+ case name
865
+ when :forced_utf8_encoding then EncodingFlags::FORCED_UTF8_ENCODING
866
+ when :forced_binary_encoding then EncodingFlags::FORCED_BINARY_ENCODING
867
+ else Kernel.raise ArgumentError, "invalid EncodingFlags flag: #{name.inspect}"
868
+ end
869
+ end
870
+
871
+ # Retrieve the value of one of the IntegerBaseFlags flags.
872
+ def integer_base_flag(name)
873
+ case name
874
+ when :binary then IntegerBaseFlags::BINARY
875
+ when :decimal then IntegerBaseFlags::DECIMAL
876
+ when :octal then IntegerBaseFlags::OCTAL
877
+ when :hexadecimal then IntegerBaseFlags::HEXADECIMAL
878
+ else Kernel.raise ArgumentError, "invalid IntegerBaseFlags flag: #{name.inspect}"
879
+ end
880
+ end
881
+
882
+ # Retrieve the value of one of the InterpolatedStringNodeFlags flags.
883
+ def interpolated_string_node_flag(name)
884
+ case name
885
+ when :frozen then InterpolatedStringNodeFlags::FROZEN
886
+ when :mutable then InterpolatedStringNodeFlags::MUTABLE
887
+ else Kernel.raise ArgumentError, "invalid InterpolatedStringNodeFlags flag: #{name.inspect}"
888
+ end
889
+ end
890
+
891
+ # Retrieve the value of one of the KeywordHashNodeFlags flags.
892
+ def keyword_hash_node_flag(name)
893
+ case name
894
+ when :symbol_keys then KeywordHashNodeFlags::SYMBOL_KEYS
895
+ else Kernel.raise ArgumentError, "invalid KeywordHashNodeFlags flag: #{name.inspect}"
896
+ end
897
+ end
898
+
899
+ # Retrieve the value of one of the LoopFlags flags.
900
+ def loop_flag(name)
901
+ case name
902
+ when :begin_modifier then LoopFlags::BEGIN_MODIFIER
903
+ else Kernel.raise ArgumentError, "invalid LoopFlags flag: #{name.inspect}"
904
+ end
905
+ end
906
+
907
+ # Retrieve the value of one of the ParameterFlags flags.
908
+ def parameter_flag(name)
909
+ case name
910
+ when :repeated_parameter then ParameterFlags::REPEATED_PARAMETER
911
+ else Kernel.raise ArgumentError, "invalid ParameterFlags flag: #{name.inspect}"
912
+ end
913
+ end
914
+
915
+ # Retrieve the value of one of the ParenthesesNodeFlags flags.
916
+ def parentheses_node_flag(name)
917
+ case name
918
+ when :multiple_statements then ParenthesesNodeFlags::MULTIPLE_STATEMENTS
919
+ else Kernel.raise ArgumentError, "invalid ParenthesesNodeFlags flag: #{name.inspect}"
920
+ end
921
+ end
922
+
923
+ # Retrieve the value of one of the RangeFlags flags.
924
+ def range_flag(name)
925
+ case name
926
+ when :exclude_end then RangeFlags::EXCLUDE_END
927
+ else Kernel.raise ArgumentError, "invalid RangeFlags flag: #{name.inspect}"
928
+ end
929
+ end
930
+
931
+ # Retrieve the value of one of the RegularExpressionFlags flags.
932
+ def regular_expression_flag(name)
933
+ case name
934
+ when :ignore_case then RegularExpressionFlags::IGNORE_CASE
935
+ when :extended then RegularExpressionFlags::EXTENDED
936
+ when :multi_line then RegularExpressionFlags::MULTI_LINE
937
+ when :once then RegularExpressionFlags::ONCE
938
+ when :euc_jp then RegularExpressionFlags::EUC_JP
939
+ when :ascii_8bit then RegularExpressionFlags::ASCII_8BIT
940
+ when :windows_31j then RegularExpressionFlags::WINDOWS_31J
941
+ when :utf_8 then RegularExpressionFlags::UTF_8
942
+ when :forced_utf8_encoding then RegularExpressionFlags::FORCED_UTF8_ENCODING
943
+ when :forced_binary_encoding then RegularExpressionFlags::FORCED_BINARY_ENCODING
944
+ when :forced_us_ascii_encoding then RegularExpressionFlags::FORCED_US_ASCII_ENCODING
945
+ else Kernel.raise ArgumentError, "invalid RegularExpressionFlags flag: #{name.inspect}"
946
+ end
947
+ end
948
+
949
+ # Retrieve the value of one of the ShareableConstantNodeFlags flags.
950
+ def shareable_constant_node_flag(name)
951
+ case name
952
+ when :literal then ShareableConstantNodeFlags::LITERAL
953
+ when :experimental_everything then ShareableConstantNodeFlags::EXPERIMENTAL_EVERYTHING
954
+ when :experimental_copy then ShareableConstantNodeFlags::EXPERIMENTAL_COPY
955
+ else Kernel.raise ArgumentError, "invalid ShareableConstantNodeFlags flag: #{name.inspect}"
956
+ end
957
+ end
958
+
959
+ # Retrieve the value of one of the StringFlags flags.
960
+ def string_flag(name)
961
+ case name
962
+ when :forced_utf8_encoding then StringFlags::FORCED_UTF8_ENCODING
963
+ when :forced_binary_encoding then StringFlags::FORCED_BINARY_ENCODING
964
+ when :frozen then StringFlags::FROZEN
965
+ when :mutable then StringFlags::MUTABLE
966
+ else Kernel.raise ArgumentError, "invalid StringFlags flag: #{name.inspect}"
967
+ end
968
+ end
969
+
970
+ # Retrieve the value of one of the SymbolFlags flags.
971
+ def symbol_flag(name)
972
+ case name
973
+ when :forced_utf8_encoding then SymbolFlags::FORCED_UTF8_ENCODING
974
+ when :forced_binary_encoding then SymbolFlags::FORCED_BINARY_ENCODING
975
+ when :forced_us_ascii_encoding then SymbolFlags::FORCED_US_ASCII_ENCODING
976
+ else Kernel.raise ArgumentError, "invalid SymbolFlags flag: #{name.inspect}"
977
+ end
978
+ end
979
+
980
+ private
981
+
982
+ # The default source object that gets attached to nodes and locations if no
983
+ # source is specified.
984
+ def default_source
985
+ Source.for("")
773
986
  end
774
987
 
775
- # Create a new XStringNode node
776
- def XStringNode(flags, opening_loc, content_loc, closing_loc, unescaped, location = Location())
777
- XStringNode.new(flags, opening_loc, content_loc, closing_loc, unescaped, location)
988
+ # The default location object that gets attached to nodes if no location is
989
+ # specified, which uses the given source.
990
+ def default_location
991
+ Location.new(default_source, 0, 0)
778
992
  end
779
993
 
780
- # Create a new YieldNode node
781
- def YieldNode(keyword_loc, lparen_loc, arguments, rparen_loc, location = Location())
782
- YieldNode.new(keyword_loc, lparen_loc, arguments, rparen_loc, location)
994
+ # The default node that gets attached to nodes if no node is specified for a
995
+ # required node field.
996
+ def default_node(source, location)
997
+ MissingNode.new(source, -1, location, 0)
783
998
  end
784
999
  end
785
1000
  end