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.
Files changed (148) hide show
  1. checksums.yaml +4 -4
  2. data/BSDmakefile +58 -0
  3. data/CHANGELOG.md +269 -1
  4. data/CONTRIBUTING.md +0 -4
  5. data/Makefile +25 -18
  6. data/README.md +57 -6
  7. data/config.yml +1724 -140
  8. data/docs/build_system.md +39 -11
  9. data/docs/configuration.md +4 -0
  10. data/docs/cruby_compilation.md +1 -1
  11. data/docs/fuzzing.md +1 -1
  12. data/docs/parser_translation.md +14 -9
  13. data/docs/parsing_rules.md +4 -1
  14. data/docs/releasing.md +8 -10
  15. data/docs/relocation.md +34 -0
  16. data/docs/ripper_translation.md +72 -0
  17. data/docs/ruby_api.md +2 -1
  18. data/docs/serialization.md +29 -5
  19. data/ext/prism/api_node.c +3395 -1999
  20. data/ext/prism/api_pack.c +9 -0
  21. data/ext/prism/extconf.rb +55 -34
  22. data/ext/prism/extension.c +597 -346
  23. data/ext/prism/extension.h +6 -5
  24. data/include/prism/ast.h +2612 -455
  25. data/include/prism/defines.h +160 -2
  26. data/include/prism/diagnostic.h +188 -76
  27. data/include/prism/encoding.h +22 -4
  28. data/include/prism/node.h +89 -17
  29. data/include/prism/options.h +224 -12
  30. data/include/prism/pack.h +11 -0
  31. data/include/prism/parser.h +267 -66
  32. data/include/prism/prettyprint.h +8 -0
  33. data/include/prism/regexp.h +18 -8
  34. data/include/prism/static_literals.h +121 -0
  35. data/include/prism/util/pm_buffer.h +75 -2
  36. data/include/prism/util/pm_char.h +1 -2
  37. data/include/prism/util/pm_constant_pool.h +18 -9
  38. data/include/prism/util/pm_integer.h +126 -0
  39. data/include/prism/util/pm_list.h +1 -1
  40. data/include/prism/util/pm_newline_list.h +19 -0
  41. data/include/prism/util/pm_string.h +48 -8
  42. data/include/prism/version.h +3 -3
  43. data/include/prism.h +99 -5
  44. data/jruby-prism.jar +0 -0
  45. data/lib/prism/compiler.rb +11 -1
  46. data/lib/prism/desugar_compiler.rb +113 -74
  47. data/lib/prism/dispatcher.rb +45 -1
  48. data/lib/prism/dot_visitor.rb +201 -77
  49. data/lib/prism/dsl.rb +673 -461
  50. data/lib/prism/ffi.rb +233 -45
  51. data/lib/prism/inspect_visitor.rb +2389 -0
  52. data/lib/prism/lex_compat.rb +35 -16
  53. data/lib/prism/mutation_compiler.rb +24 -8
  54. data/lib/prism/node.rb +7731 -8460
  55. data/lib/prism/node_ext.rb +328 -32
  56. data/lib/prism/pack.rb +4 -0
  57. data/lib/prism/parse_result/comments.rb +34 -24
  58. data/lib/prism/parse_result/errors.rb +65 -0
  59. data/lib/prism/parse_result/newlines.rb +102 -12
  60. data/lib/prism/parse_result.rb +448 -44
  61. data/lib/prism/pattern.rb +28 -10
  62. data/lib/prism/polyfill/append_as_bytes.rb +15 -0
  63. data/lib/prism/polyfill/byteindex.rb +13 -0
  64. data/lib/prism/polyfill/unpack1.rb +14 -0
  65. data/lib/prism/reflection.rb +413 -0
  66. data/lib/prism/relocation.rb +504 -0
  67. data/lib/prism/serialize.rb +1940 -1198
  68. data/lib/prism/string_query.rb +30 -0
  69. data/lib/prism/translation/parser/builder.rb +61 -0
  70. data/lib/prism/translation/parser/compiler.rb +569 -195
  71. data/lib/prism/translation/parser/lexer.rb +516 -39
  72. data/lib/prism/translation/parser.rb +177 -12
  73. data/lib/prism/translation/parser33.rb +1 -1
  74. data/lib/prism/translation/parser34.rb +1 -1
  75. data/lib/prism/translation/parser35.rb +12 -0
  76. data/lib/prism/translation/ripper/sexp.rb +125 -0
  77. data/lib/prism/translation/ripper/shim.rb +5 -0
  78. data/lib/prism/translation/ripper.rb +3224 -462
  79. data/lib/prism/translation/ruby_parser.rb +194 -69
  80. data/lib/prism/translation.rb +4 -1
  81. data/lib/prism/version.rb +1 -1
  82. data/lib/prism/visitor.rb +13 -0
  83. data/lib/prism.rb +17 -27
  84. data/prism.gemspec +57 -17
  85. data/rbi/prism/compiler.rbi +12 -0
  86. data/rbi/prism/dsl.rbi +524 -0
  87. data/rbi/prism/inspect_visitor.rbi +12 -0
  88. data/rbi/prism/node.rbi +8722 -0
  89. data/rbi/prism/node_ext.rbi +107 -0
  90. data/rbi/prism/parse_result.rbi +404 -0
  91. data/rbi/prism/reflection.rbi +58 -0
  92. data/rbi/prism/string_query.rbi +12 -0
  93. data/rbi/prism/translation/parser.rbi +11 -0
  94. data/rbi/prism/translation/parser33.rbi +6 -0
  95. data/rbi/prism/translation/parser34.rbi +6 -0
  96. data/rbi/prism/translation/parser35.rbi +6 -0
  97. data/rbi/prism/translation/ripper.rbi +15 -0
  98. data/rbi/prism/visitor.rbi +473 -0
  99. data/rbi/prism.rbi +44 -7745
  100. data/sig/prism/compiler.rbs +9 -0
  101. data/sig/prism/dispatcher.rbs +16 -0
  102. data/sig/prism/dot_visitor.rbs +6 -0
  103. data/sig/prism/dsl.rbs +351 -0
  104. data/sig/prism/inspect_visitor.rbs +22 -0
  105. data/sig/prism/lex_compat.rbs +10 -0
  106. data/sig/prism/mutation_compiler.rbs +159 -0
  107. data/sig/prism/node.rbs +3614 -0
  108. data/sig/prism/node_ext.rbs +82 -0
  109. data/sig/prism/pack.rbs +43 -0
  110. data/sig/prism/parse_result.rbs +192 -0
  111. data/sig/prism/pattern.rbs +13 -0
  112. data/sig/prism/reflection.rbs +50 -0
  113. data/sig/prism/relocation.rbs +185 -0
  114. data/sig/prism/serialize.rbs +8 -0
  115. data/sig/prism/string_query.rbs +11 -0
  116. data/sig/prism/visitor.rbs +169 -0
  117. data/sig/prism.rbs +248 -4767
  118. data/src/diagnostic.c +672 -230
  119. data/src/encoding.c +211 -108
  120. data/src/node.c +7541 -1653
  121. data/src/options.c +135 -20
  122. data/src/pack.c +33 -17
  123. data/src/prettyprint.c +1543 -1485
  124. data/src/prism.c +7813 -3050
  125. data/src/regexp.c +225 -73
  126. data/src/serialize.c +101 -77
  127. data/src/static_literals.c +617 -0
  128. data/src/token_type.c +14 -13
  129. data/src/util/pm_buffer.c +187 -20
  130. data/src/util/pm_char.c +5 -5
  131. data/src/util/pm_constant_pool.c +39 -19
  132. data/src/util/pm_integer.c +670 -0
  133. data/src/util/pm_list.c +1 -1
  134. data/src/util/pm_newline_list.c +43 -5
  135. data/src/util/pm_string.c +213 -33
  136. data/src/util/pm_strncasecmp.c +13 -1
  137. data/src/util/pm_strpbrk.c +32 -6
  138. metadata +55 -19
  139. data/docs/ripper.md +0 -36
  140. data/include/prism/util/pm_state_stack.h +0 -42
  141. data/include/prism/util/pm_string_list.h +0 -44
  142. data/lib/prism/debug.rb +0 -206
  143. data/lib/prism/node_inspector.rb +0 -68
  144. data/lib/prism/translation/parser/rubocop.rb +0 -45
  145. data/rbi/prism_static.rbi +0 -207
  146. data/sig/prism_static.rbs +0 -201
  147. data/src/util/pm_state_stack.c +0 -25
  148. data/src/util/pm_string_list.c +0 -28
data/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
@@ -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
- }
@@ -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
- }