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.
- checksums.yaml +4 -4
- data/BSDmakefile +58 -0
- data/CHANGELOG.md +284 -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 +9 -11
- 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 +3841 -2000
- 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 +23 -3
- 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 +264 -80
- data/lib/prism/dispatcher.rb +45 -1
- data/lib/prism/dot_visitor.rb +201 -77
- data/lib/prism/dsl.rb +672 -457
- data/lib/prism/ffi.rb +308 -94
- 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 +9712 -8931
- 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 +458 -46
- 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 -902
- 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 +188 -11
- data/lib/prism/translation/parser33.rb +12 -0
- data/lib/prism/translation/parser34.rb +12 -0
- 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 +3267 -386
- 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 +59 -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 +1546 -1488
- data/src/prism.c +7822 -3044
- 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 +49 -8
- 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 +59 -21
- 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 -37
- 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,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.
|
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),
|
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
|
-
#
|
35
|
+
# class Builder
|
36
|
+
# include Prism::DSL
|
28
37
|
#
|
29
|
-
#
|
30
|
-
#
|
31
|
-
#
|
32
|
-
#
|
33
|
-
#
|
38
|
+
# attr_reader :default_source
|
39
|
+
#
|
40
|
+
# def initialize
|
41
|
+
# @default_source = source("[1]")
|
42
|
+
# end
|
34
43
|
#
|
35
|
-
#
|
36
|
-
#
|
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
|
-
|
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
|
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
|
47
|
-
AliasGlobalVariableNode.new(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)
|
48
114
|
end
|
49
115
|
|
50
|
-
# Create a new
|
51
|
-
def
|
52
|
-
|
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
|
56
|
-
def
|
57
|
-
|
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
|
61
|
-
def
|
62
|
-
|
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
|
66
|
-
def
|
67
|
-
|
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
|
71
|
-
def
|
72
|
-
|
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
|
76
|
-
def
|
77
|
-
|
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
|
81
|
-
def
|
82
|
-
|
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
|
86
|
-
def
|
87
|
-
|
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
|
91
|
-
def
|
92
|
-
|
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
|
96
|
-
def
|
97
|
-
|
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
|
101
|
-
def
|
102
|
-
|
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
|
106
|
-
def
|
107
|
-
|
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
|
111
|
-
def
|
112
|
-
|
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
|
116
|
-
def
|
117
|
-
|
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
|
121
|
-
def
|
122
|
-
|
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
|
126
|
-
def
|
127
|
-
|
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
|
131
|
-
def
|
132
|
-
|
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
|
136
|
-
def
|
137
|
-
|
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
|
141
|
-
def
|
142
|
-
|
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
|
146
|
-
def
|
147
|
-
|
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
|
151
|
-
def
|
152
|
-
|
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
|
156
|
-
def
|
157
|
-
|
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
|
161
|
-
def
|
162
|
-
|
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
|
166
|
-
def
|
167
|
-
|
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
|
171
|
-
def
|
172
|
-
|
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
|
176
|
-
def
|
177
|
-
|
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
|
181
|
-
def
|
182
|
-
|
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
|
186
|
-
def
|
187
|
-
|
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
|
191
|
-
def
|
192
|
-
|
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
|
196
|
-
def
|
197
|
-
|
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
|
201
|
-
def
|
202
|
-
|
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
|
206
|
-
def
|
207
|
-
|
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
|
211
|
-
def
|
212
|
-
|
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
|
216
|
-
def
|
217
|
-
|
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
|
221
|
-
def
|
222
|
-
|
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
|
226
|
-
def
|
227
|
-
|
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
|
231
|
-
def
|
232
|
-
|
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
|
236
|
-
def
|
237
|
-
|
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
|
241
|
-
def
|
242
|
-
|
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
|
246
|
-
def
|
247
|
-
|
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
|
251
|
-
def
|
252
|
-
|
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
|
256
|
-
def
|
257
|
-
|
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
|
261
|
-
def
|
262
|
-
|
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
|
266
|
-
def
|
267
|
-
|
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
|
271
|
-
def
|
272
|
-
|
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
|
276
|
-
def
|
277
|
-
|
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
|
281
|
-
def
|
282
|
-
|
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
|
286
|
-
def
|
287
|
-
|
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
|
291
|
-
def
|
292
|
-
|
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
|
296
|
-
def
|
297
|
-
|
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
|
301
|
-
def
|
302
|
-
|
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
|
306
|
-
def
|
307
|
-
|
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
|
311
|
-
def
|
312
|
-
|
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
|
316
|
-
def
|
317
|
-
|
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
|
321
|
-
def
|
322
|
-
|
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
|
326
|
-
def
|
327
|
-
|
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
|
331
|
-
def
|
332
|
-
|
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
|
336
|
-
def
|
337
|
-
|
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
|
341
|
-
def
|
342
|
-
|
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
|
346
|
-
def
|
347
|
-
|
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
|
351
|
-
def
|
352
|
-
|
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
|
356
|
-
def
|
357
|
-
|
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
|
361
|
-
def
|
362
|
-
|
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
|
366
|
-
def
|
367
|
-
|
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
|
371
|
-
def
|
372
|
-
|
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
|
376
|
-
def
|
377
|
-
|
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
|
381
|
-
def
|
382
|
-
|
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
|
386
|
-
def
|
387
|
-
|
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
|
391
|
-
def
|
392
|
-
|
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
|
396
|
-
def
|
397
|
-
|
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
|
401
|
-
def
|
402
|
-
|
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
|
406
|
-
def
|
407
|
-
|
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
|
411
|
-
def
|
412
|
-
|
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
|
416
|
-
def
|
417
|
-
|
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
|
421
|
-
def
|
422
|
-
|
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
|
426
|
-
def
|
427
|
-
|
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
|
431
|
-
def
|
432
|
-
|
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
|
436
|
-
def
|
437
|
-
|
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
|
441
|
-
def
|
442
|
-
|
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
|
446
|
-
def
|
447
|
-
|
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
|
451
|
-
def
|
452
|
-
|
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
|
456
|
-
def
|
457
|
-
|
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
|
461
|
-
def
|
462
|
-
|
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
|
466
|
-
def
|
467
|
-
|
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
|
471
|
-
def
|
472
|
-
|
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
|
476
|
-
def
|
477
|
-
|
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
|
481
|
-
def
|
482
|
-
|
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
|
486
|
-
def
|
487
|
-
|
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
|
491
|
-
def
|
492
|
-
|
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
|
496
|
-
def
|
497
|
-
|
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
|
501
|
-
def
|
502
|
-
|
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
|
506
|
-
def
|
507
|
-
|
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
|
511
|
-
def
|
512
|
-
|
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
|
516
|
-
def
|
517
|
-
|
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
|
521
|
-
def
|
522
|
-
|
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
|
526
|
-
def
|
527
|
-
|
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
|
531
|
-
def
|
532
|
-
|
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
|
536
|
-
def
|
537
|
-
|
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
|
541
|
-
def
|
542
|
-
|
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
|
546
|
-
def
|
547
|
-
|
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
|
551
|
-
def
|
552
|
-
|
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
|
556
|
-
def
|
557
|
-
|
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
|
561
|
-
def
|
562
|
-
|
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
|
566
|
-
def
|
567
|
-
|
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
|
571
|
-
def
|
572
|
-
|
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
|
576
|
-
def
|
577
|
-
|
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
|
581
|
-
def
|
582
|
-
|
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
|
586
|
-
def
|
587
|
-
|
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
|
591
|
-
def
|
592
|
-
|
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
|
596
|
-
def
|
597
|
-
|
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
|
601
|
-
def
|
602
|
-
|
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
|
606
|
-
def
|
607
|
-
|
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
|
611
|
-
def
|
612
|
-
|
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
|
616
|
-
def
|
617
|
-
|
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
|
621
|
-
def
|
622
|
-
|
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
|
626
|
-
def
|
627
|
-
|
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
|
631
|
-
def
|
632
|
-
|
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
|
636
|
-
def
|
637
|
-
|
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
|
641
|
-
def
|
642
|
-
|
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
|
646
|
-
def
|
647
|
-
|
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
|
651
|
-
def
|
652
|
-
|
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
|
656
|
-
def
|
657
|
-
|
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
|
661
|
-
def
|
662
|
-
|
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
|
666
|
-
def
|
667
|
-
|
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
|
671
|
-
def
|
672
|
-
|
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
|
676
|
-
def
|
677
|
-
|
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
|
681
|
-
def
|
682
|
-
|
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
|
686
|
-
def
|
687
|
-
|
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
|
691
|
-
def
|
692
|
-
|
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
|
696
|
-
def
|
697
|
-
|
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
|
701
|
-
def
|
702
|
-
|
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
|
706
|
-
def
|
707
|
-
|
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
|
711
|
-
def
|
712
|
-
|
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
|
716
|
-
def
|
717
|
-
|
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
|
721
|
-
def
|
722
|
-
|
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
|
726
|
-
def
|
727
|
-
|
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
|
731
|
-
def
|
732
|
-
|
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
|
736
|
-
def
|
737
|
-
|
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
|
741
|
-
def
|
742
|
-
|
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
|
746
|
-
def
|
747
|
-
|
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
|
751
|
-
def
|
752
|
-
|
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
|
756
|
-
def
|
757
|
-
|
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
|
761
|
-
def
|
762
|
-
|
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
|
-
#
|
766
|
-
def
|
767
|
-
|
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
|
-
#
|
771
|
-
def
|
772
|
-
|
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
|
-
#
|
776
|
-
|
777
|
-
|
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
|
-
#
|
781
|
-
|
782
|
-
|
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
|