jruby-prism-parser 0.24.0-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.
- checksums.yaml +4 -4
- data/BSDmakefile +58 -0
- data/CHANGELOG.md +269 -1
- data/CONTRIBUTING.md +0 -4
- data/Makefile +25 -18
- data/README.md +57 -6
- data/config.yml +1724 -140
- data/docs/build_system.md +39 -11
- data/docs/configuration.md +4 -0
- data/docs/cruby_compilation.md +1 -1
- data/docs/fuzzing.md +1 -1
- data/docs/parser_translation.md +14 -9
- data/docs/parsing_rules.md +4 -1
- data/docs/releasing.md +8 -10
- data/docs/relocation.md +34 -0
- data/docs/ripper_translation.md +72 -0
- data/docs/ruby_api.md +2 -1
- data/docs/serialization.md +29 -5
- data/ext/prism/api_node.c +3395 -1999
- data/ext/prism/api_pack.c +9 -0
- data/ext/prism/extconf.rb +55 -34
- data/ext/prism/extension.c +597 -346
- data/ext/prism/extension.h +6 -5
- data/include/prism/ast.h +2612 -455
- data/include/prism/defines.h +160 -2
- data/include/prism/diagnostic.h +188 -76
- data/include/prism/encoding.h +22 -4
- data/include/prism/node.h +89 -17
- data/include/prism/options.h +224 -12
- data/include/prism/pack.h +11 -0
- data/include/prism/parser.h +267 -66
- data/include/prism/prettyprint.h +8 -0
- data/include/prism/regexp.h +18 -8
- data/include/prism/static_literals.h +121 -0
- data/include/prism/util/pm_buffer.h +75 -2
- data/include/prism/util/pm_char.h +1 -2
- data/include/prism/util/pm_constant_pool.h +18 -9
- data/include/prism/util/pm_integer.h +126 -0
- data/include/prism/util/pm_list.h +1 -1
- data/include/prism/util/pm_newline_list.h +19 -0
- data/include/prism/util/pm_string.h +48 -8
- data/include/prism/version.h +3 -3
- data/include/prism.h +99 -5
- data/jruby-prism.jar +0 -0
- data/lib/prism/compiler.rb +11 -1
- data/lib/prism/desugar_compiler.rb +113 -74
- data/lib/prism/dispatcher.rb +45 -1
- data/lib/prism/dot_visitor.rb +201 -77
- data/lib/prism/dsl.rb +673 -461
- data/lib/prism/ffi.rb +233 -45
- data/lib/prism/inspect_visitor.rb +2389 -0
- data/lib/prism/lex_compat.rb +35 -16
- data/lib/prism/mutation_compiler.rb +24 -8
- data/lib/prism/node.rb +7731 -8460
- data/lib/prism/node_ext.rb +328 -32
- data/lib/prism/pack.rb +4 -0
- data/lib/prism/parse_result/comments.rb +34 -24
- data/lib/prism/parse_result/errors.rb +65 -0
- data/lib/prism/parse_result/newlines.rb +102 -12
- data/lib/prism/parse_result.rb +448 -44
- data/lib/prism/pattern.rb +28 -10
- data/lib/prism/polyfill/append_as_bytes.rb +15 -0
- data/lib/prism/polyfill/byteindex.rb +13 -0
- data/lib/prism/polyfill/unpack1.rb +14 -0
- data/lib/prism/reflection.rb +413 -0
- data/lib/prism/relocation.rb +504 -0
- data/lib/prism/serialize.rb +1940 -1198
- data/lib/prism/string_query.rb +30 -0
- data/lib/prism/translation/parser/builder.rb +61 -0
- data/lib/prism/translation/parser/compiler.rb +569 -195
- data/lib/prism/translation/parser/lexer.rb +516 -39
- data/lib/prism/translation/parser.rb +177 -12
- data/lib/prism/translation/parser33.rb +1 -1
- data/lib/prism/translation/parser34.rb +1 -1
- data/lib/prism/translation/parser35.rb +12 -0
- data/lib/prism/translation/ripper/sexp.rb +125 -0
- data/lib/prism/translation/ripper/shim.rb +5 -0
- data/lib/prism/translation/ripper.rb +3224 -462
- data/lib/prism/translation/ruby_parser.rb +194 -69
- data/lib/prism/translation.rb +4 -1
- data/lib/prism/version.rb +1 -1
- data/lib/prism/visitor.rb +13 -0
- data/lib/prism.rb +17 -27
- data/prism.gemspec +57 -17
- data/rbi/prism/compiler.rbi +12 -0
- data/rbi/prism/dsl.rbi +524 -0
- data/rbi/prism/inspect_visitor.rbi +12 -0
- data/rbi/prism/node.rbi +8722 -0
- data/rbi/prism/node_ext.rbi +107 -0
- data/rbi/prism/parse_result.rbi +404 -0
- data/rbi/prism/reflection.rbi +58 -0
- data/rbi/prism/string_query.rbi +12 -0
- data/rbi/prism/translation/parser.rbi +11 -0
- data/rbi/prism/translation/parser33.rbi +6 -0
- data/rbi/prism/translation/parser34.rbi +6 -0
- data/rbi/prism/translation/parser35.rbi +6 -0
- data/rbi/prism/translation/ripper.rbi +15 -0
- data/rbi/prism/visitor.rbi +473 -0
- data/rbi/prism.rbi +44 -7745
- data/sig/prism/compiler.rbs +9 -0
- data/sig/prism/dispatcher.rbs +16 -0
- data/sig/prism/dot_visitor.rbs +6 -0
- data/sig/prism/dsl.rbs +351 -0
- data/sig/prism/inspect_visitor.rbs +22 -0
- data/sig/prism/lex_compat.rbs +10 -0
- data/sig/prism/mutation_compiler.rbs +159 -0
- data/sig/prism/node.rbs +3614 -0
- data/sig/prism/node_ext.rbs +82 -0
- data/sig/prism/pack.rbs +43 -0
- data/sig/prism/parse_result.rbs +192 -0
- data/sig/prism/pattern.rbs +13 -0
- data/sig/prism/reflection.rbs +50 -0
- data/sig/prism/relocation.rbs +185 -0
- data/sig/prism/serialize.rbs +8 -0
- data/sig/prism/string_query.rbs +11 -0
- data/sig/prism/visitor.rbs +169 -0
- data/sig/prism.rbs +248 -4767
- data/src/diagnostic.c +672 -230
- data/src/encoding.c +211 -108
- data/src/node.c +7541 -1653
- data/src/options.c +135 -20
- data/src/pack.c +33 -17
- data/src/prettyprint.c +1543 -1485
- data/src/prism.c +7813 -3050
- data/src/regexp.c +225 -73
- data/src/serialize.c +101 -77
- data/src/static_literals.c +617 -0
- data/src/token_type.c +14 -13
- data/src/util/pm_buffer.c +187 -20
- data/src/util/pm_char.c +5 -5
- data/src/util/pm_constant_pool.c +39 -19
- data/src/util/pm_integer.c +670 -0
- data/src/util/pm_list.c +1 -1
- data/src/util/pm_newline_list.c +43 -5
- data/src/util/pm_string.c +213 -33
- data/src/util/pm_strncasecmp.c +13 -1
- data/src/util/pm_strpbrk.c +32 -6
- metadata +55 -19
- data/docs/ripper.md +0 -36
- data/include/prism/util/pm_state_stack.h +0 -42
- data/include/prism/util/pm_string_list.h +0 -44
- data/lib/prism/debug.rb +0 -206
- data/lib/prism/node_inspector.rb +0 -68
- data/lib/prism/translation/parser/rubocop.rb +0 -45
- data/rbi/prism_static.rbi +0 -207
- data/sig/prism_static.rbs +0 -201
- data/src/util/pm_state_stack.c +0 -25
- 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,780 +10,991 @@ 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.
|
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
|
-
#
|
22
|
+
# source,
|
23
|
+
# 0,
|
18
24
|
# Prism::Location.new(source, 1, 1),
|
19
|
-
#
|
25
|
+
# Prism::IntegerBaseFlags::DECIMAL,
|
26
|
+
# 1
|
20
27
|
# )
|
21
28
|
# ],
|
22
29
|
# Prism::Location.new(source, 0, 1),
|
23
|
-
# Prism::Location.new(source, 2, 1)
|
24
|
-
# source
|
30
|
+
# Prism::Location.new(source, 2, 1)
|
25
31
|
# )
|
26
32
|
#
|
27
33
|
# you could instead write:
|
28
34
|
#
|
29
|
-
#
|
35
|
+
# class Builder
|
36
|
+
# include Prism::DSL
|
30
37
|
#
|
31
|
-
#
|
32
|
-
#
|
33
|
-
#
|
34
|
-
#
|
35
|
-
#
|
36
|
-
# )
|
38
|
+
# attr_reader :default_source
|
39
|
+
#
|
40
|
+
# def initialize
|
41
|
+
# @default_source = source("[1]")
|
42
|
+
# end
|
37
43
|
#
|
38
|
-
#
|
39
|
-
#
|
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.
|
40
61
|
module DSL
|
41
|
-
|
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
|
42
70
|
|
43
|
-
# Create a new Location object
|
44
|
-
def
|
71
|
+
# Create a new Location object.
|
72
|
+
def location(source: default_source, start_offset: 0, length: 0)
|
45
73
|
Location.new(source, start_offset, length)
|
46
74
|
end
|
47
75
|
|
48
|
-
# Create a new AliasGlobalVariableNode node
|
49
|
-
def
|
50
|
-
AliasGlobalVariableNode.new(source, new_name, old_name, keyword_loc
|
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)
|
51
114
|
end
|
52
115
|
|
53
|
-
# Create a new
|
54
|
-
def
|
55
|
-
|
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)
|
56
119
|
end
|
57
120
|
|
58
|
-
# Create a new
|
59
|
-
def
|
60
|
-
|
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)
|
61
124
|
end
|
62
125
|
|
63
|
-
# Create a new
|
64
|
-
def
|
65
|
-
|
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)
|
66
129
|
end
|
67
130
|
|
68
|
-
# Create a new
|
69
|
-
def
|
70
|
-
|
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)
|
71
134
|
end
|
72
135
|
|
73
|
-
# Create a new
|
74
|
-
def
|
75
|
-
|
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)
|
76
139
|
end
|
77
140
|
|
78
|
-
# Create a new
|
79
|
-
def
|
80
|
-
|
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)
|
81
144
|
end
|
82
145
|
|
83
|
-
# Create a new
|
84
|
-
def
|
85
|
-
|
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)
|
86
149
|
end
|
87
150
|
|
88
|
-
# Create a new
|
89
|
-
def
|
90
|
-
|
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)
|
91
154
|
end
|
92
155
|
|
93
|
-
# Create a new
|
94
|
-
def
|
95
|
-
|
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)
|
96
159
|
end
|
97
160
|
|
98
|
-
# Create a new
|
99
|
-
def
|
100
|
-
|
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)
|
101
164
|
end
|
102
165
|
|
103
|
-
# Create a new
|
104
|
-
def
|
105
|
-
|
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)
|
106
169
|
end
|
107
170
|
|
108
|
-
# Create a new
|
109
|
-
def
|
110
|
-
|
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)
|
111
174
|
end
|
112
175
|
|
113
|
-
# Create a new
|
114
|
-
def
|
115
|
-
|
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)
|
116
179
|
end
|
117
180
|
|
118
|
-
# Create a new
|
119
|
-
def
|
120
|
-
|
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)
|
121
184
|
end
|
122
185
|
|
123
|
-
# Create a new
|
124
|
-
def
|
125
|
-
|
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)
|
126
189
|
end
|
127
190
|
|
128
|
-
# Create a new
|
129
|
-
def
|
130
|
-
|
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)
|
131
194
|
end
|
132
195
|
|
133
|
-
# Create a new
|
134
|
-
def
|
135
|
-
|
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)
|
136
199
|
end
|
137
200
|
|
138
|
-
# Create a new
|
139
|
-
def
|
140
|
-
|
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)
|
141
204
|
end
|
142
205
|
|
143
|
-
# Create a new
|
144
|
-
def
|
145
|
-
|
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)
|
146
209
|
end
|
147
210
|
|
148
|
-
# Create a new
|
149
|
-
def
|
150
|
-
|
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)
|
151
214
|
end
|
152
215
|
|
153
|
-
# Create a new
|
154
|
-
def
|
155
|
-
|
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)
|
156
219
|
end
|
157
220
|
|
158
|
-
# Create a new
|
159
|
-
def
|
160
|
-
|
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)
|
161
224
|
end
|
162
225
|
|
163
|
-
# Create a new
|
164
|
-
def
|
165
|
-
|
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)
|
166
229
|
end
|
167
230
|
|
168
|
-
# Create a new
|
169
|
-
def
|
170
|
-
|
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)
|
171
234
|
end
|
172
235
|
|
173
|
-
# Create a new
|
174
|
-
def
|
175
|
-
|
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)
|
176
239
|
end
|
177
240
|
|
178
|
-
# Create a new
|
179
|
-
def
|
180
|
-
|
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)
|
181
244
|
end
|
182
245
|
|
183
|
-
# Create a new
|
184
|
-
def
|
185
|
-
|
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)
|
186
249
|
end
|
187
250
|
|
188
|
-
# Create a new
|
189
|
-
def
|
190
|
-
|
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)
|
191
254
|
end
|
192
255
|
|
193
|
-
# Create a new
|
194
|
-
def
|
195
|
-
|
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)
|
196
259
|
end
|
197
260
|
|
198
|
-
# Create a new
|
199
|
-
def
|
200
|
-
|
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)
|
201
264
|
end
|
202
265
|
|
203
|
-
# Create a new
|
204
|
-
def
|
205
|
-
|
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)
|
206
269
|
end
|
207
270
|
|
208
|
-
# Create a new
|
209
|
-
def
|
210
|
-
|
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)
|
211
274
|
end
|
212
275
|
|
213
|
-
# Create a new
|
214
|
-
def
|
215
|
-
|
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)
|
216
279
|
end
|
217
280
|
|
218
|
-
# Create a new
|
219
|
-
def
|
220
|
-
|
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)
|
221
284
|
end
|
222
285
|
|
223
|
-
# Create a new
|
224
|
-
def
|
225
|
-
|
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)
|
226
289
|
end
|
227
290
|
|
228
|
-
# Create a new
|
229
|
-
def
|
230
|
-
|
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)
|
231
294
|
end
|
232
295
|
|
233
|
-
# Create a new
|
234
|
-
def
|
235
|
-
|
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)
|
236
299
|
end
|
237
300
|
|
238
|
-
# Create a new
|
239
|
-
def
|
240
|
-
|
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)
|
241
304
|
end
|
242
305
|
|
243
|
-
# Create a new
|
244
|
-
def
|
245
|
-
|
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)
|
246
309
|
end
|
247
310
|
|
248
|
-
# Create a new
|
249
|
-
def
|
250
|
-
|
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)
|
251
314
|
end
|
252
315
|
|
253
|
-
# Create a new
|
254
|
-
def
|
255
|
-
|
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)
|
256
319
|
end
|
257
320
|
|
258
|
-
# Create a new
|
259
|
-
def
|
260
|
-
|
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)
|
261
324
|
end
|
262
325
|
|
263
|
-
# Create a new
|
264
|
-
def
|
265
|
-
|
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)
|
266
329
|
end
|
267
330
|
|
268
|
-
# Create a new
|
269
|
-
def
|
270
|
-
|
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)
|
271
334
|
end
|
272
335
|
|
273
|
-
# Create a new
|
274
|
-
def
|
275
|
-
|
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)
|
276
339
|
end
|
277
340
|
|
278
|
-
# Create a new
|
279
|
-
def
|
280
|
-
|
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)
|
281
344
|
end
|
282
345
|
|
283
|
-
# Create a new
|
284
|
-
def
|
285
|
-
|
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)
|
286
349
|
end
|
287
350
|
|
288
|
-
# Create a new
|
289
|
-
def
|
290
|
-
|
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)
|
291
354
|
end
|
292
355
|
|
293
|
-
# Create a new
|
294
|
-
def
|
295
|
-
|
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)
|
296
359
|
end
|
297
360
|
|
298
|
-
# Create a new
|
299
|
-
def
|
300
|
-
|
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)
|
301
364
|
end
|
302
365
|
|
303
|
-
# Create a new
|
304
|
-
def
|
305
|
-
|
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)
|
306
369
|
end
|
307
370
|
|
308
|
-
# Create a new
|
309
|
-
def
|
310
|
-
|
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)
|
311
374
|
end
|
312
375
|
|
313
|
-
# Create a new
|
314
|
-
def
|
315
|
-
|
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)
|
316
379
|
end
|
317
380
|
|
318
|
-
# Create a new
|
319
|
-
def
|
320
|
-
|
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)
|
321
384
|
end
|
322
385
|
|
323
|
-
# Create a new
|
324
|
-
def
|
325
|
-
|
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)
|
326
389
|
end
|
327
390
|
|
328
|
-
# Create a new
|
329
|
-
def
|
330
|
-
|
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)
|
331
394
|
end
|
332
395
|
|
333
|
-
# Create a new
|
334
|
-
def
|
335
|
-
|
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)
|
336
399
|
end
|
337
400
|
|
338
|
-
# Create a new
|
339
|
-
def
|
340
|
-
|
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)
|
341
404
|
end
|
342
405
|
|
343
|
-
# Create a new
|
344
|
-
def
|
345
|
-
|
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)
|
346
409
|
end
|
347
410
|
|
348
|
-
# Create a new
|
349
|
-
def
|
350
|
-
|
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)
|
351
414
|
end
|
352
415
|
|
353
|
-
# Create a new
|
354
|
-
def
|
355
|
-
|
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)
|
356
419
|
end
|
357
420
|
|
358
|
-
# Create a new
|
359
|
-
def
|
360
|
-
|
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)
|
361
424
|
end
|
362
425
|
|
363
|
-
# Create a new
|
364
|
-
def
|
365
|
-
|
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)
|
366
429
|
end
|
367
430
|
|
368
|
-
# Create a new
|
369
|
-
def
|
370
|
-
|
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)
|
371
434
|
end
|
372
435
|
|
373
|
-
# Create a new
|
374
|
-
def
|
375
|
-
|
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)
|
376
439
|
end
|
377
440
|
|
378
|
-
# Create a new
|
379
|
-
def
|
380
|
-
|
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)
|
381
444
|
end
|
382
445
|
|
383
|
-
# Create a new
|
384
|
-
def
|
385
|
-
|
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)
|
386
449
|
end
|
387
450
|
|
388
|
-
# Create a new
|
389
|
-
def
|
390
|
-
|
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)
|
391
454
|
end
|
392
455
|
|
393
|
-
# Create a new
|
394
|
-
def
|
395
|
-
|
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)
|
396
459
|
end
|
397
460
|
|
398
|
-
# Create a new
|
399
|
-
def
|
400
|
-
|
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)
|
401
464
|
end
|
402
465
|
|
403
|
-
# Create a new
|
404
|
-
def
|
405
|
-
|
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)
|
406
469
|
end
|
407
470
|
|
408
|
-
# Create a new
|
409
|
-
def
|
410
|
-
|
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)
|
411
474
|
end
|
412
475
|
|
413
|
-
# Create a new
|
414
|
-
def
|
415
|
-
|
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)
|
416
479
|
end
|
417
480
|
|
418
|
-
# Create a new
|
419
|
-
def
|
420
|
-
|
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)
|
421
484
|
end
|
422
485
|
|
423
|
-
# Create a new
|
424
|
-
def
|
425
|
-
|
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)
|
426
489
|
end
|
427
490
|
|
428
|
-
# Create a new
|
429
|
-
def
|
430
|
-
|
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)
|
431
494
|
end
|
432
495
|
|
433
|
-
# Create a new
|
434
|
-
def
|
435
|
-
|
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)
|
436
499
|
end
|
437
500
|
|
438
|
-
# Create a new
|
439
|
-
def
|
440
|
-
|
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)
|
441
504
|
end
|
442
505
|
|
443
|
-
# Create a new
|
444
|
-
def
|
445
|
-
|
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)
|
446
509
|
end
|
447
510
|
|
448
|
-
# Create a new
|
449
|
-
def
|
450
|
-
|
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)
|
451
514
|
end
|
452
515
|
|
453
|
-
# Create a new
|
454
|
-
def
|
455
|
-
|
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)
|
456
519
|
end
|
457
520
|
|
458
|
-
# Create a new
|
459
|
-
def
|
460
|
-
|
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)
|
461
524
|
end
|
462
525
|
|
463
|
-
# Create a new
|
464
|
-
def
|
465
|
-
|
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)
|
466
529
|
end
|
467
530
|
|
468
|
-
# Create a new
|
469
|
-
def
|
470
|
-
|
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)
|
471
534
|
end
|
472
535
|
|
473
|
-
# Create a new
|
474
|
-
def
|
475
|
-
|
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)
|
476
539
|
end
|
477
540
|
|
478
|
-
# Create a new
|
479
|
-
def
|
480
|
-
|
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)
|
481
544
|
end
|
482
545
|
|
483
|
-
# Create a new
|
484
|
-
def
|
485
|
-
|
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)
|
486
549
|
end
|
487
550
|
|
488
|
-
# Create a new
|
489
|
-
def
|
490
|
-
|
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)
|
491
554
|
end
|
492
555
|
|
493
|
-
# Create a new
|
494
|
-
def
|
495
|
-
|
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)
|
496
559
|
end
|
497
560
|
|
498
|
-
# Create a new
|
499
|
-
def
|
500
|
-
|
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)
|
501
564
|
end
|
502
565
|
|
503
|
-
# Create a new
|
504
|
-
def
|
505
|
-
|
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)
|
506
569
|
end
|
507
570
|
|
508
|
-
# Create a new
|
509
|
-
def
|
510
|
-
|
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)
|
511
574
|
end
|
512
575
|
|
513
|
-
# Create a new
|
514
|
-
def
|
515
|
-
|
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)
|
516
579
|
end
|
517
580
|
|
518
|
-
# Create a new
|
519
|
-
def
|
520
|
-
|
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)
|
521
584
|
end
|
522
585
|
|
523
|
-
# Create a new
|
524
|
-
def
|
525
|
-
|
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)
|
526
589
|
end
|
527
590
|
|
528
|
-
# Create a new
|
529
|
-
def
|
530
|
-
|
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)
|
531
594
|
end
|
532
595
|
|
533
|
-
# Create a new
|
534
|
-
def
|
535
|
-
|
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)
|
536
599
|
end
|
537
600
|
|
538
|
-
# Create a new
|
539
|
-
def
|
540
|
-
|
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)
|
541
604
|
end
|
542
605
|
|
543
|
-
# Create a new
|
544
|
-
def
|
545
|
-
|
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)
|
546
609
|
end
|
547
610
|
|
548
|
-
# Create a new
|
549
|
-
def
|
550
|
-
|
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)
|
551
614
|
end
|
552
615
|
|
553
|
-
# Create a new
|
554
|
-
def
|
555
|
-
|
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)
|
556
619
|
end
|
557
620
|
|
558
|
-
# Create a new
|
559
|
-
def
|
560
|
-
|
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)
|
561
624
|
end
|
562
625
|
|
563
|
-
# Create a new
|
564
|
-
def
|
565
|
-
|
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)
|
566
629
|
end
|
567
630
|
|
568
|
-
# Create a new
|
569
|
-
def
|
570
|
-
|
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)
|
571
634
|
end
|
572
635
|
|
573
|
-
# Create a new
|
574
|
-
def
|
575
|
-
|
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)
|
576
639
|
end
|
577
640
|
|
578
|
-
# Create a new
|
579
|
-
def
|
580
|
-
|
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)
|
581
644
|
end
|
582
645
|
|
583
|
-
# Create a new
|
584
|
-
def
|
585
|
-
|
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)
|
586
649
|
end
|
587
650
|
|
588
|
-
# Create a new
|
589
|
-
def
|
590
|
-
|
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)
|
591
654
|
end
|
592
655
|
|
593
|
-
# Create a new
|
594
|
-
def
|
595
|
-
|
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)
|
596
659
|
end
|
597
660
|
|
598
|
-
# Create a new
|
599
|
-
def
|
600
|
-
|
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)
|
601
664
|
end
|
602
665
|
|
603
|
-
# Create a new
|
604
|
-
def
|
605
|
-
|
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)
|
606
669
|
end
|
607
670
|
|
608
|
-
# Create a new
|
609
|
-
def
|
610
|
-
|
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)
|
611
674
|
end
|
612
675
|
|
613
|
-
# Create a new
|
614
|
-
def
|
615
|
-
|
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)
|
616
679
|
end
|
617
680
|
|
618
|
-
# Create a new
|
619
|
-
def
|
620
|
-
|
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)
|
621
684
|
end
|
622
685
|
|
623
|
-
# Create a new
|
624
|
-
def
|
625
|
-
|
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)
|
626
689
|
end
|
627
690
|
|
628
|
-
# Create a new
|
629
|
-
def
|
630
|
-
|
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)
|
631
694
|
end
|
632
695
|
|
633
|
-
# Create a new
|
634
|
-
def
|
635
|
-
|
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)
|
636
699
|
end
|
637
700
|
|
638
|
-
# Create a new
|
639
|
-
def
|
640
|
-
|
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)
|
641
704
|
end
|
642
705
|
|
643
|
-
# Create a new
|
644
|
-
def
|
645
|
-
|
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)
|
646
709
|
end
|
647
710
|
|
648
|
-
# Create a new
|
649
|
-
def
|
650
|
-
|
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)
|
651
714
|
end
|
652
715
|
|
653
|
-
# Create a new
|
654
|
-
def
|
655
|
-
|
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)
|
656
719
|
end
|
657
720
|
|
658
|
-
# Create a new
|
659
|
-
def
|
660
|
-
|
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)
|
661
724
|
end
|
662
725
|
|
663
|
-
# Create a new
|
664
|
-
def
|
665
|
-
|
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)
|
666
729
|
end
|
667
730
|
|
668
|
-
# Create a new
|
669
|
-
def
|
670
|
-
|
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)
|
671
734
|
end
|
672
735
|
|
673
|
-
# Create a new
|
674
|
-
def
|
675
|
-
|
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)
|
676
739
|
end
|
677
740
|
|
678
|
-
# Create a new
|
679
|
-
def
|
680
|
-
|
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)
|
681
744
|
end
|
682
745
|
|
683
|
-
# Create a new
|
684
|
-
def
|
685
|
-
|
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)
|
686
749
|
end
|
687
750
|
|
688
|
-
# Create a new
|
689
|
-
def
|
690
|
-
|
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)
|
691
754
|
end
|
692
755
|
|
693
|
-
# Create a new
|
694
|
-
def
|
695
|
-
|
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)
|
696
759
|
end
|
697
760
|
|
698
|
-
# Create a new
|
699
|
-
def
|
700
|
-
|
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)
|
701
764
|
end
|
702
765
|
|
703
|
-
# Create a new
|
704
|
-
def
|
705
|
-
|
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)
|
706
769
|
end
|
707
770
|
|
708
|
-
# Create a new
|
709
|
-
def
|
710
|
-
|
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)
|
711
774
|
end
|
712
775
|
|
713
|
-
# Create a new
|
714
|
-
def
|
715
|
-
|
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)
|
716
779
|
end
|
717
780
|
|
718
|
-
# Create a new
|
719
|
-
def
|
720
|
-
|
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)
|
721
784
|
end
|
722
785
|
|
723
|
-
# Create a new
|
724
|
-
def
|
725
|
-
|
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)
|
726
789
|
end
|
727
790
|
|
728
|
-
# Create a new
|
729
|
-
def
|
730
|
-
|
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)
|
731
794
|
end
|
732
795
|
|
733
|
-
# Create a new
|
734
|
-
def
|
735
|
-
|
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)
|
736
799
|
end
|
737
800
|
|
738
|
-
# Create a new
|
739
|
-
def
|
740
|
-
|
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)
|
741
804
|
end
|
742
805
|
|
743
|
-
# Create a new
|
744
|
-
def
|
745
|
-
|
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)
|
746
809
|
end
|
747
810
|
|
748
|
-
# Create a new
|
749
|
-
def
|
750
|
-
|
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)
|
751
814
|
end
|
752
815
|
|
753
|
-
# Create a new
|
754
|
-
def
|
755
|
-
|
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)
|
756
819
|
end
|
757
820
|
|
758
|
-
# Create a new
|
759
|
-
def
|
760
|
-
|
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)
|
761
824
|
end
|
762
825
|
|
763
|
-
# Create a new
|
764
|
-
def
|
765
|
-
|
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)
|
766
829
|
end
|
767
830
|
|
768
|
-
#
|
769
|
-
def
|
770
|
-
|
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
|
771
841
|
end
|
772
842
|
|
773
|
-
#
|
774
|
-
def
|
775
|
-
|
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("")
|
776
986
|
end
|
777
987
|
|
778
|
-
#
|
779
|
-
|
780
|
-
|
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)
|
781
992
|
end
|
782
993
|
|
783
|
-
#
|
784
|
-
|
785
|
-
|
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)
|
786
998
|
end
|
787
999
|
end
|
788
1000
|
end
|