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/rbi/prism_static.rbi
DELETED
@@ -1,207 +0,0 @@
|
|
1
|
-
class Prism::ParseResult
|
2
|
-
sig { returns(Prism::ProgramNode) }
|
3
|
-
def value; end
|
4
|
-
|
5
|
-
sig { returns(T::Array[Prism::Comment]) }
|
6
|
-
def comments; end
|
7
|
-
|
8
|
-
sig { returns(T::Array[Prism::ParseError]) }
|
9
|
-
def errors; end
|
10
|
-
|
11
|
-
sig { returns(T::Array[Prism::ParseWarning]) }
|
12
|
-
def warnings; end
|
13
|
-
|
14
|
-
sig { returns(Prism::Source) }
|
15
|
-
def source; end
|
16
|
-
end
|
17
|
-
|
18
|
-
class Prism::ParseError
|
19
|
-
sig { returns(String) }
|
20
|
-
def message; end
|
21
|
-
|
22
|
-
sig { returns(Prism::Location) }
|
23
|
-
def location; end
|
24
|
-
end
|
25
|
-
|
26
|
-
class Prism::ParseWarning
|
27
|
-
sig { returns(String) }
|
28
|
-
def message; end
|
29
|
-
|
30
|
-
sig { returns(Prism::Location) }
|
31
|
-
def location; end
|
32
|
-
end
|
33
|
-
|
34
|
-
class Prism::Node
|
35
|
-
sig { returns(Prism::Location) }
|
36
|
-
def location; end
|
37
|
-
|
38
|
-
sig { returns(String) }
|
39
|
-
def slice; end
|
40
|
-
|
41
|
-
sig { returns(String) }
|
42
|
-
def to_dot; end
|
43
|
-
|
44
|
-
sig { params(visitor: Prism::Visitor).void }
|
45
|
-
def accept(visitor); end
|
46
|
-
|
47
|
-
sig { returns(T::Array[T.nilable(Prism::Node)]) }
|
48
|
-
def child_nodes; end
|
49
|
-
|
50
|
-
sig { returns(T::Array[Prism::Node]) }
|
51
|
-
def compact_child_nodes; end
|
52
|
-
|
53
|
-
sig { returns(T::Array[T.nilable(Prism::Node)]) }
|
54
|
-
def deconstruct; end
|
55
|
-
|
56
|
-
sig { returns(Symbol) }
|
57
|
-
def type; end
|
58
|
-
end
|
59
|
-
|
60
|
-
class Prism::Comment
|
61
|
-
sig { returns(Prism::Location) }
|
62
|
-
def location; end
|
63
|
-
|
64
|
-
sig { returns(T::Boolean) }
|
65
|
-
def trailing?; end
|
66
|
-
end
|
67
|
-
|
68
|
-
class Prism::InlineComment < Prism::Comment
|
69
|
-
sig { override.returns(T::Boolean) }
|
70
|
-
def trailing?; end
|
71
|
-
end
|
72
|
-
|
73
|
-
class Prism::EmbDocComment < Prism::Comment
|
74
|
-
end
|
75
|
-
|
76
|
-
class Prism::DATAComment < Prism::Comment
|
77
|
-
end
|
78
|
-
|
79
|
-
class Prism::Location
|
80
|
-
sig { params(source: Prism::Source, start_offset: Integer, length: Integer).void }
|
81
|
-
def initialize(source, start_offset, length); end
|
82
|
-
|
83
|
-
sig { returns(String) }
|
84
|
-
def slice; end
|
85
|
-
|
86
|
-
sig { returns(T::Array[Prism::Comment]) }
|
87
|
-
def comments; end
|
88
|
-
|
89
|
-
sig { params(options: T.untyped).returns(Prism::Location) }
|
90
|
-
def copy(**options); end
|
91
|
-
|
92
|
-
sig { returns(Integer) }
|
93
|
-
def start_offset; end
|
94
|
-
|
95
|
-
sig { returns(Integer) }
|
96
|
-
def end_offset; end
|
97
|
-
|
98
|
-
sig { returns(Integer) }
|
99
|
-
def start_line; end
|
100
|
-
|
101
|
-
sig { returns(Integer) }
|
102
|
-
def end_line; end
|
103
|
-
|
104
|
-
sig { returns(Integer) }
|
105
|
-
def start_column; end
|
106
|
-
|
107
|
-
sig { returns(Integer) }
|
108
|
-
def end_column; end
|
109
|
-
end
|
110
|
-
|
111
|
-
class Prism::Source
|
112
|
-
sig { params(source: String, start_line: Integer, offsets: T::Array[Integer]).void }
|
113
|
-
def initialize(source, start_line, offsets); end
|
114
|
-
|
115
|
-
sig { params(offset: Integer, length: Integer).returns(String) }
|
116
|
-
def slice(offset, length); end
|
117
|
-
|
118
|
-
sig { params(value: Integer).returns(Integer) }
|
119
|
-
def line(value); end
|
120
|
-
|
121
|
-
sig { params(value: Integer).returns(Integer) }
|
122
|
-
def line_offset(value); end
|
123
|
-
|
124
|
-
sig { params(value: Integer).returns(Integer) }
|
125
|
-
def column(value); end
|
126
|
-
|
127
|
-
sig { returns(String) }
|
128
|
-
def source; end
|
129
|
-
|
130
|
-
sig { returns(T::Array[Integer]) }
|
131
|
-
def offsets; end
|
132
|
-
end
|
133
|
-
|
134
|
-
class Prism::Token
|
135
|
-
sig { params(type: T.untyped, value: String, location: Prism::Location).void }
|
136
|
-
def initialize(type, value, location); end
|
137
|
-
|
138
|
-
sig { params(keys: T.untyped).returns(T.untyped) }
|
139
|
-
def deconstruct_keys(keys); end
|
140
|
-
|
141
|
-
sig { params(q: T.untyped).returns(T.untyped) }
|
142
|
-
def pretty_print(q); end
|
143
|
-
|
144
|
-
sig { params(other: T.untyped).returns(T::Boolean) }
|
145
|
-
def ==(other); end
|
146
|
-
|
147
|
-
sig { returns(T.untyped) }
|
148
|
-
def type; end
|
149
|
-
|
150
|
-
sig { returns(String) }
|
151
|
-
def value; end
|
152
|
-
|
153
|
-
sig { returns(Prism::Location) }
|
154
|
-
def location; end
|
155
|
-
end
|
156
|
-
|
157
|
-
class Prism::NodeInspector
|
158
|
-
sig { params(prefix: String).void }
|
159
|
-
def initialize(prefix); end
|
160
|
-
|
161
|
-
sig { returns(String) }
|
162
|
-
def prefix; end
|
163
|
-
|
164
|
-
sig { returns(String) }
|
165
|
-
def output; end
|
166
|
-
|
167
|
-
# Appends a line to the output with the current prefix.
|
168
|
-
sig { params(line: String).void }
|
169
|
-
def <<(line); end
|
170
|
-
|
171
|
-
# This generates a string that is used as the header of the inspect output
|
172
|
-
# for any given node.
|
173
|
-
sig { params(node: Prism::Node).returns(String) }
|
174
|
-
def header(node); end
|
175
|
-
|
176
|
-
# Generates a string that represents a list of nodes. It handles properly
|
177
|
-
# using the box drawing characters to make the output look nice.
|
178
|
-
sig { params(prefix: String, nodes: T::Array[Prism::Node]).returns(String) }
|
179
|
-
def list(prefix, nodes); end
|
180
|
-
|
181
|
-
# Generates a string that represents a location field on a node.
|
182
|
-
sig { params(value: Prism::Location).returns(String) }
|
183
|
-
def location(value); end
|
184
|
-
|
185
|
-
# Generates a string that represents a child node.
|
186
|
-
sig { params(node: Prism::Node, append: String).returns(String) }
|
187
|
-
def child_node(node, append); end
|
188
|
-
|
189
|
-
# Returns a new inspector that can be used to inspect a child node.
|
190
|
-
sig { params(append: String).returns(Prism::NodeInspector) }
|
191
|
-
def child_inspector(append); end
|
192
|
-
|
193
|
-
# Returns the output as a string.
|
194
|
-
sig { returns(String) }
|
195
|
-
def to_str; end
|
196
|
-
end
|
197
|
-
|
198
|
-
class Prism::BasicVisitor
|
199
|
-
sig { params(node: T.nilable(Prism::Node)).void }
|
200
|
-
def visit(node); end
|
201
|
-
|
202
|
-
sig { params(nodes: T::Array[T.nilable(Prism::Node)]).void }
|
203
|
-
def visit_all(nodes); end
|
204
|
-
|
205
|
-
sig { params(node: Prism::Node).void }
|
206
|
-
def visit_child_nodes(node); end
|
207
|
-
end
|
data/sig/prism_static.rbs
DELETED
@@ -1,201 +0,0 @@
|
|
1
|
-
module Prism
|
2
|
-
BACKEND: :CEXT | :FFI
|
3
|
-
VERSION: String
|
4
|
-
|
5
|
-
def self.parse: (String source, ?filepath: String, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> ParseResult[ProgramNode]
|
6
|
-
def self.lex: (String source, ?filepath: String, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> ParseResult[Array[[Token, Integer]]]
|
7
|
-
def self.parse_lex: (String source, ?filepath: String, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> ParseResult[[ProgramNode, Array[[Token, Integer]]]]
|
8
|
-
def self.dump: (String source, ?filepath: String, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> String
|
9
|
-
def self.parse_comments: (String source, ?filepath: String, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> Array[Comment]
|
10
|
-
def self.parse_success?: (String source, ?filepath: String, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> bool
|
11
|
-
def self.parse_failure?: (String source, ?filepath: String, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> bool
|
12
|
-
|
13
|
-
def self.parse_file: (String filepath, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> ParseResult[ProgramNode]
|
14
|
-
def self.lex_file: (String filepath, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> ParseResult[Array[[Token, Integer]]]
|
15
|
-
def self.parse_lex_file: (String filepath, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> ParseResult[[ProgramNode, Array[[Token, Integer]]]]
|
16
|
-
def self.dump_file: (String filepath, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> String
|
17
|
-
def self.parse_file_comments: (String filepath, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> Array[Comment]
|
18
|
-
def self.parse_file_failure?: (String filepath, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> bool
|
19
|
-
def self.parse_file_success?: (String filepath, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> bool
|
20
|
-
|
21
|
-
def self.load: (String source, String serialized) -> ParseResult[ProgramNode]
|
22
|
-
|
23
|
-
type ripper_token = [[Integer, Integer], Symbol, String, untyped]
|
24
|
-
def self.lex_compat: (String source, ?filepath: String, ?line: Integer, ?encoding: Encoding, ?frozen_string_literal: bool, ?scopes: Array[Array[Symbol]]) -> ParseResult[Array[ripper_token]]
|
25
|
-
def self.lex_ripper: (String source) -> Array[ripper_token]
|
26
|
-
|
27
|
-
class ParseResult[T]
|
28
|
-
attr_reader value: T
|
29
|
-
attr_reader comments: Array[Comment]
|
30
|
-
attr_reader magic_comments: Array[MagicComment]
|
31
|
-
attr_reader data_loc: Location?
|
32
|
-
attr_reader errors: Array[ParseError]
|
33
|
-
attr_reader warnings: Array[ParseWarning]
|
34
|
-
attr_reader source: Source
|
35
|
-
|
36
|
-
def initialize: (T value, Array[Comment] comments, Array[MagicComment] magic_comments, Location? data_loc, Array[ParseError] errors, Array[ParseWarning] warnings, Source source) -> void
|
37
|
-
def deconstruct_keys: (Array[Symbol] keys) -> { value: T, comments: Array[Comment], magic_comments: Array[MagicComment], data_loc: Location?, errors: Array[ParseError], warnings: Array[ParseWarning] }
|
38
|
-
def success?: () -> bool
|
39
|
-
def failure?: () -> bool
|
40
|
-
end
|
41
|
-
|
42
|
-
class ParseError
|
43
|
-
attr_reader message: String
|
44
|
-
attr_reader location: Location
|
45
|
-
|
46
|
-
def initialize: (String message, Location location) -> void
|
47
|
-
def deconstruct_keys: (Array[Symbol] keys) -> { message: String, location: Location }
|
48
|
-
end
|
49
|
-
|
50
|
-
class ParseWarning
|
51
|
-
attr_reader message: String
|
52
|
-
attr_reader location: Location
|
53
|
-
|
54
|
-
def initialize: (String message, Location location) -> void
|
55
|
-
def deconstruct_keys: (Array[Symbol] keys) -> { message: String, location: Location }
|
56
|
-
end
|
57
|
-
|
58
|
-
class Node
|
59
|
-
@newline: bool
|
60
|
-
|
61
|
-
attr_reader location: Location
|
62
|
-
|
63
|
-
def child_nodes: () -> Array[Node?]
|
64
|
-
def newline?: () -> bool
|
65
|
-
def set_newline_flag: (Array[bool] newline_marked) -> void
|
66
|
-
def slice: () -> String
|
67
|
-
def pretty_print: (untyped q) -> untyped
|
68
|
-
def inspect: (?NodeInspector inspector) -> String # TODO: not right, only is defined on subclasses
|
69
|
-
def to_dot: () -> String
|
70
|
-
end
|
71
|
-
|
72
|
-
class Comment
|
73
|
-
attr_reader location: Location
|
74
|
-
|
75
|
-
def initialize: (Location location) -> void
|
76
|
-
def deconstruct_keys: (Array[Symbol] keys) -> { location: Location }
|
77
|
-
end
|
78
|
-
|
79
|
-
class InlineComment < Comment
|
80
|
-
def trailing?: () -> bool
|
81
|
-
end
|
82
|
-
|
83
|
-
class EmbDocComment < Comment
|
84
|
-
def trailing?: () -> false
|
85
|
-
end
|
86
|
-
|
87
|
-
class MagicComment
|
88
|
-
attr_reader key_loc: Location
|
89
|
-
attr_reader value_loc: Location
|
90
|
-
|
91
|
-
def initialize: (Location key_loc, Location value_loc) -> void
|
92
|
-
|
93
|
-
def key: () -> String
|
94
|
-
def value: () -> String
|
95
|
-
|
96
|
-
def deconstruct_keys: (Array[Symbol] keys) -> { key_loc: Location, value_loc: Location }
|
97
|
-
end
|
98
|
-
|
99
|
-
class Location
|
100
|
-
attr_reader source: Source | nil
|
101
|
-
attr_reader start_offset: Integer
|
102
|
-
attr_reader length: Integer
|
103
|
-
attr_reader comments: Array[Comment]
|
104
|
-
|
105
|
-
def initialize: (Source? source, Integer start_offset, Integer length) -> void
|
106
|
-
def copy: (?source: Source, ?start_offset: Integer, ?length: Integer) -> Location
|
107
|
-
def slice: () -> String
|
108
|
-
def start_character_offset: () -> Integer
|
109
|
-
def end_offset: () -> Integer
|
110
|
-
def end_character_offset: () -> Integer
|
111
|
-
def start_line: () -> Integer
|
112
|
-
def start_line_slice: () -> String
|
113
|
-
def end_line: () -> Integer
|
114
|
-
def start_column: () -> Integer
|
115
|
-
def start_character_column: () -> Integer
|
116
|
-
def end_column: () -> Integer
|
117
|
-
def end_character_column: () -> Integer
|
118
|
-
def deconstruct_keys: (Array[Symbol] keys) -> { start_offset: Integer, end_offset: Integer }
|
119
|
-
def pretty_print: (untyped q) -> untyped
|
120
|
-
def join: (Location other) -> Location
|
121
|
-
|
122
|
-
def self.null: () -> Location
|
123
|
-
end
|
124
|
-
|
125
|
-
class Source
|
126
|
-
attr_reader source: String
|
127
|
-
attr_reader start_line: Integer
|
128
|
-
attr_reader offsets: Array[Integer]
|
129
|
-
|
130
|
-
def initialize: (String source, ?Integer start_line, ?Array[Integer] offsets) -> void
|
131
|
-
def slice: (Integer byte_offset, Integer length) -> String
|
132
|
-
def line: (Integer byte_offset) -> Integer
|
133
|
-
def line_offset: (Integer byte_offset) -> Integer
|
134
|
-
def column: (Integer byte_offset) -> Integer
|
135
|
-
def character_offset: (Integer byte_offset) -> Integer
|
136
|
-
def character_column: (Integer byte_offset) -> Integer
|
137
|
-
end
|
138
|
-
|
139
|
-
class Token
|
140
|
-
attr_reader type: Symbol
|
141
|
-
attr_reader value: String
|
142
|
-
attr_reader location: Location
|
143
|
-
|
144
|
-
def initialize: (Symbol type, String value, Location location) -> void
|
145
|
-
def deconstruct_keys: (Array[Symbol] keys) -> { type: Symbol, value: String, location: Location }
|
146
|
-
def pretty_print: (untyped q) -> untyped
|
147
|
-
def ==: (untyped other) -> bool
|
148
|
-
end
|
149
|
-
|
150
|
-
class NodeInspector
|
151
|
-
attr_reader prefix: String
|
152
|
-
attr_reader output: String
|
153
|
-
|
154
|
-
@prefix: String
|
155
|
-
@output: String
|
156
|
-
|
157
|
-
def initialize: (?String prefix) -> void
|
158
|
-
|
159
|
-
# Appends a line to the output with the current prefix.
|
160
|
-
def <<: (String line) -> void
|
161
|
-
|
162
|
-
# This generates a string that is used as the header of the inspect output
|
163
|
-
# for any given node.
|
164
|
-
def header: (Node node) -> String
|
165
|
-
|
166
|
-
# Generates a string that represents a list of nodes. It handles properly
|
167
|
-
# using the box drawing characters to make the output look nice.
|
168
|
-
def list: (String prefix, Array[Node] nodes) -> String
|
169
|
-
|
170
|
-
# Generates a string that represents a location field on a node.
|
171
|
-
def location: (Location? value) -> String
|
172
|
-
|
173
|
-
# Generates a string that represents a child node.
|
174
|
-
def child_node: (Node node, String append) -> String
|
175
|
-
|
176
|
-
# Returns a new inspector that can be used to inspect a child node.
|
177
|
-
def child_inspector: (String append) -> NodeInspector
|
178
|
-
|
179
|
-
# Returns the output as a string.
|
180
|
-
def to_str: () -> String
|
181
|
-
end
|
182
|
-
|
183
|
-
class BasicVisitor
|
184
|
-
def visit: (Node? node) -> void
|
185
|
-
def visit_all: (Array[Node?] nodes) -> void
|
186
|
-
def visit_child_nodes: (Node node) -> void
|
187
|
-
end
|
188
|
-
|
189
|
-
class Pattern
|
190
|
-
class CompilationError < StandardError
|
191
|
-
end
|
192
|
-
|
193
|
-
attr_reader query: String
|
194
|
-
|
195
|
-
@compiled: Proc
|
196
|
-
|
197
|
-
def initialize: (String query) -> void
|
198
|
-
def compile: () -> Proc
|
199
|
-
def scan: (Node root) -> void
|
200
|
-
end
|
201
|
-
end
|
data/src/util/pm_state_stack.c
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
#include "prism/util/pm_state_stack.h"
|
2
|
-
|
3
|
-
/**
|
4
|
-
* Pushes a value onto the stack.
|
5
|
-
*/
|
6
|
-
void
|
7
|
-
pm_state_stack_push(pm_state_stack_t *stack, bool value) {
|
8
|
-
*stack = (*stack << 1) | (value & 1);
|
9
|
-
}
|
10
|
-
|
11
|
-
/**
|
12
|
-
* Pops a value off the stack.
|
13
|
-
*/
|
14
|
-
void
|
15
|
-
pm_state_stack_pop(pm_state_stack_t *stack) {
|
16
|
-
*stack >>= 1;
|
17
|
-
}
|
18
|
-
|
19
|
-
/**
|
20
|
-
* Returns the value at the top of the stack.
|
21
|
-
*/
|
22
|
-
bool
|
23
|
-
pm_state_stack_p(pm_state_stack_t *stack) {
|
24
|
-
return *stack & 1;
|
25
|
-
}
|
data/src/util/pm_string_list.c
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
#include "prism/util/pm_string_list.h"
|
2
|
-
|
3
|
-
/**
|
4
|
-
* Append a pm_string_t to the given string list.
|
5
|
-
*/
|
6
|
-
void
|
7
|
-
pm_string_list_append(pm_string_list_t *string_list, pm_string_t *string) {
|
8
|
-
if (string_list->length + 1 > string_list->capacity) {
|
9
|
-
if (string_list->capacity == 0) {
|
10
|
-
string_list->capacity = 1;
|
11
|
-
} else {
|
12
|
-
string_list->capacity *= 2;
|
13
|
-
}
|
14
|
-
|
15
|
-
string_list->strings = realloc(string_list->strings, string_list->capacity * sizeof(pm_string_t));
|
16
|
-
if (string_list->strings == NULL) abort();
|
17
|
-
}
|
18
|
-
|
19
|
-
string_list->strings[string_list->length++] = *string;
|
20
|
-
}
|
21
|
-
|
22
|
-
/**
|
23
|
-
* Free the memory associated with the string list
|
24
|
-
*/
|
25
|
-
void
|
26
|
-
pm_string_list_free(pm_string_list_t *string_list) {
|
27
|
-
free(string_list->strings);
|
28
|
-
}
|