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/include/prism/node.h CHANGED
@@ -8,6 +8,14 @@
8
8
 
9
9
  #include "prism/defines.h"
10
10
  #include "prism/parser.h"
11
+ #include "prism/util/pm_buffer.h"
12
+
13
+ /**
14
+ * Loop through each node in the node list, writing each node to the given
15
+ * pm_node_t pointer.
16
+ */
17
+ #define PM_NODE_LIST_FOREACH(list, index, node) \
18
+ for (size_t index = 0; index < (list)->size && ((node) = (list)->nodes[index]); index++)
11
19
 
12
20
  /**
13
21
  * Append a new node onto the end of the node list.
@@ -18,33 +26,35 @@
18
26
  void pm_node_list_append(pm_node_list_t *list, pm_node_t *node);
19
27
 
20
28
  /**
21
- * Deallocate a node and all of its children.
29
+ * Prepend a new node onto the beginning of the node list.
22
30
  *
23
- * @param parser The parser that owns the node.
24
- * @param node The node to deallocate.
31
+ * @param list The list to prepend to.
32
+ * @param node The node to prepend.
25
33
  */
26
- PRISM_EXPORTED_FUNCTION void pm_node_destroy(pm_parser_t *parser, struct pm_node *node);
34
+ void pm_node_list_prepend(pm_node_list_t *list, pm_node_t *node);
27
35
 
28
36
  /**
29
- * This struct stores the information gathered by the pm_node_memsize function.
30
- * It contains both the memory footprint and additionally metadata about the
31
- * shape of the tree.
37
+ * Concatenate the given node list onto the end of the other node list.
38
+ *
39
+ * @param list The list to concatenate onto.
40
+ * @param other The list to concatenate.
32
41
  */
33
- typedef struct {
34
- /** The total memory footprint of the node and all of its children. */
35
- size_t memsize;
42
+ void pm_node_list_concat(pm_node_list_t *list, pm_node_list_t *other);
36
43
 
37
- /** The number of children the node has. */
38
- size_t node_count;
39
- } pm_memsize_t;
44
+ /**
45
+ * Free the internal memory associated with the given node list.
46
+ *
47
+ * @param list The list to free.
48
+ */
49
+ void pm_node_list_free(pm_node_list_t *list);
40
50
 
41
51
  /**
42
- * Calculates the memory footprint of a given node.
52
+ * Deallocate a node and all of its children.
43
53
  *
44
- * @param node The node to calculate the memory footprint of.
45
- * @param memsize The memory footprint of the node and all of its children.
54
+ * @param parser The parser that owns the node.
55
+ * @param node The node to deallocate.
46
56
  */
47
- PRISM_EXPORTED_FUNCTION void pm_node_memsize(pm_node_t *node, pm_memsize_t *memsize);
57
+ PRISM_EXPORTED_FUNCTION void pm_node_destroy(pm_parser_t *parser, struct pm_node *node);
48
58
 
49
59
  /**
50
60
  * Returns a string representation of the given node type.
@@ -54,4 +64,66 @@ PRISM_EXPORTED_FUNCTION void pm_node_memsize(pm_node_t *node, pm_memsize_t *mems
54
64
  */
55
65
  PRISM_EXPORTED_FUNCTION const char * pm_node_type_to_str(pm_node_type_t node_type);
56
66
 
67
+ /**
68
+ * Visit each of the nodes in this subtree using the given visitor callback. The
69
+ * callback function will be called for each node in the subtree. If it returns
70
+ * false, then that node's children will not be visited. If it returns true,
71
+ * then the children will be visited. The data parameter is treated as an opaque
72
+ * pointer and is passed to the visitor callback for consumers to use as they
73
+ * see fit.
74
+ *
75
+ * As an example:
76
+ *
77
+ * ```c
78
+ * #include "prism.h"
79
+ *
80
+ * bool visit(const pm_node_t *node, void *data) {
81
+ * size_t *indent = (size_t *) data;
82
+ * for (size_t i = 0; i < *indent * 2; i++) putc(' ', stdout);
83
+ * printf("%s\n", pm_node_type_to_str(node->type));
84
+ *
85
+ * size_t next_indent = *indent + 1;
86
+ * size_t *next_data = &next_indent;
87
+ * pm_visit_child_nodes(node, visit, next_data);
88
+ *
89
+ * return false;
90
+ * }
91
+ *
92
+ * int main(void) {
93
+ * const char *source = "1 + 2; 3 + 4";
94
+ * size_t size = strlen(source);
95
+ *
96
+ * pm_parser_t parser;
97
+ * pm_options_t options = { 0 };
98
+ * pm_parser_init(&parser, (const uint8_t *) source, size, &options);
99
+ *
100
+ * size_t indent = 0;
101
+ * pm_node_t *node = pm_parse(&parser);
102
+ *
103
+ * size_t *data = &indent;
104
+ * pm_visit_node(node, visit, data);
105
+ *
106
+ * pm_node_destroy(&parser, node);
107
+ * pm_parser_free(&parser);
108
+ * return EXIT_SUCCESS;
109
+ * }
110
+ * ```
111
+ *
112
+ * @param node The root node to start visiting from.
113
+ * @param visitor The callback to call for each node in the subtree.
114
+ * @param data An opaque pointer that is passed to the visitor callback.
115
+ */
116
+ PRISM_EXPORTED_FUNCTION void pm_visit_node(const pm_node_t *node, bool (*visitor)(const pm_node_t *node, void *data), void *data);
117
+
118
+ /**
119
+ * Visit the children of the given node with the given callback. This is the
120
+ * default behavior for walking the tree that is called from pm_visit_node if
121
+ * the callback returns true.
122
+ *
123
+ * @param node The node to visit the children of.
124
+ * @param visitor The callback to call for each child node.
125
+ * @param data An opaque pointer that is passed to the visitor callback.
126
+ */
127
+ PRISM_EXPORTED_FUNCTION void pm_visit_child_nodes(const pm_node_t *node, bool (*visitor)(const pm_node_t *node, void *data), void *data);
128
+
57
129
  #endif
@@ -7,12 +7,29 @@
7
7
  #define PRISM_OPTIONS_H
8
8
 
9
9
  #include "prism/defines.h"
10
+ #include "prism/util/pm_char.h"
10
11
  #include "prism/util/pm_string.h"
11
12
 
12
13
  #include <stdbool.h>
13
14
  #include <stddef.h>
14
15
  #include <stdint.h>
15
16
 
17
+ /**
18
+ * String literals should be made frozen.
19
+ */
20
+ #define PM_OPTIONS_FROZEN_STRING_LITERAL_DISABLED ((int8_t) -1)
21
+
22
+ /**
23
+ * String literals may be frozen or mutable depending on the implementation
24
+ * default.
25
+ */
26
+ #define PM_OPTIONS_FROZEN_STRING_LITERAL_UNSET ((int8_t) 0)
27
+
28
+ /**
29
+ * String literals should be made mutable.
30
+ */
31
+ #define PM_OPTIONS_FROZEN_STRING_LITERAL_ENABLED ((int8_t) 1)
32
+
16
33
  /**
17
34
  * A scope of locals surrounding the code that is being parsed.
18
35
  */
@@ -22,8 +39,43 @@ typedef struct pm_options_scope {
22
39
 
23
40
  /** The names of the locals in the scope. */
24
41
  pm_string_t *locals;
42
+
43
+ /** Flags for the set of forwarding parameters in this scope. */
44
+ uint8_t forwarding;
25
45
  } pm_options_scope_t;
26
46
 
47
+ /** The default value for parameters. */
48
+ static const uint8_t PM_OPTIONS_SCOPE_FORWARDING_NONE = 0x0;
49
+
50
+ /** When the scope is fowarding with the * parameter. */
51
+ static const uint8_t PM_OPTIONS_SCOPE_FORWARDING_POSITIONALS = 0x1;
52
+
53
+ /** When the scope is fowarding with the ** parameter. */
54
+ static const uint8_t PM_OPTIONS_SCOPE_FORWARDING_KEYWORDS = 0x2;
55
+
56
+ /** When the scope is fowarding with the & parameter. */
57
+ static const uint8_t PM_OPTIONS_SCOPE_FORWARDING_BLOCK = 0x4;
58
+
59
+ /** When the scope is fowarding with the ... parameter. */
60
+ static const uint8_t PM_OPTIONS_SCOPE_FORWARDING_ALL = 0x8;
61
+
62
+ // Forward declaration needed by the callback typedef.
63
+ struct pm_options;
64
+
65
+ /**
66
+ * The callback called when additional switches are found in a shebang comment
67
+ * that need to be processed by the runtime.
68
+ *
69
+ * @param options The options struct that may be updated by this callback.
70
+ * Certain fields will be checked for changes, specifically encoding,
71
+ * command_line, and frozen_string_literal.
72
+ * @param source The source of the shebang comment.
73
+ * @param length The length of the source.
74
+ * @param shebang_callback_data Any additional data that should be passed along
75
+ * to the callback.
76
+ */
77
+ typedef void (*pm_options_shebang_callback_t)(struct pm_options *options, const uint8_t *source, size_t length, void *shebang_callback_data);
78
+
27
79
  /**
28
80
  * The version of Ruby syntax that we should be parsing with. This is used to
29
81
  * allow consumers to specify which behavior they want in case they need to
@@ -33,14 +85,29 @@ typedef enum {
33
85
  /** The current version of prism. */
34
86
  PM_OPTIONS_VERSION_LATEST = 0,
35
87
 
36
- /** The vendored version of prism in CRuby 3.3.0. */
37
- PM_OPTIONS_VERSION_CRUBY_3_3_0 = 1
88
+ /** The vendored version of prism in CRuby 3.3.x. */
89
+ PM_OPTIONS_VERSION_CRUBY_3_3 = 1,
90
+
91
+ /** The vendored version of prism in CRuby 3.4.x. */
92
+ PM_OPTIONS_VERSION_CRUBY_3_4 = 2
38
93
  } pm_options_version_t;
39
94
 
40
95
  /**
41
96
  * The options that can be passed to the parser.
42
97
  */
43
- typedef struct {
98
+ typedef struct pm_options {
99
+ /**
100
+ * The callback to call when additional switches are found in a shebang
101
+ * comment.
102
+ */
103
+ pm_options_shebang_callback_t shebang_callback;
104
+
105
+ /**
106
+ * Any additional data that should be passed along to the shebang callback
107
+ * if one was set.
108
+ */
109
+ void *shebang_callback_data;
110
+
44
111
  /** The name of the file that is currently being parsed. */
45
112
  pm_string_t filepath;
46
113
 
@@ -76,10 +143,97 @@ typedef struct {
76
143
  */
77
144
  pm_options_version_t version;
78
145
 
79
- /** Whether or not the frozen string literal option has been set. */
80
- bool frozen_string_literal;
146
+ /** A bitset of the various options that were set on the command line. */
147
+ uint8_t command_line;
148
+
149
+ /**
150
+ * Whether or not the frozen string literal option has been set.
151
+ * May be:
152
+ * - PM_OPTIONS_FROZEN_STRING_LITERAL_DISABLED
153
+ * - PM_OPTIONS_FROZEN_STRING_LITERAL_ENABLED
154
+ * - PM_OPTIONS_FROZEN_STRING_LITERAL_UNSET
155
+ */
156
+ int8_t frozen_string_literal;
157
+
158
+ /**
159
+ * Whether or not the encoding magic comments should be respected. This is a
160
+ * niche use-case where you want to parse a file with a specific encoding
161
+ * but ignore any encoding magic comments at the top of the file.
162
+ */
163
+ bool encoding_locked;
164
+
165
+ /**
166
+ * When the file being parsed is the main script, the shebang will be
167
+ * considered for command-line flags (or for implicit -x). The caller needs
168
+ * to pass this information to the parser so that it can behave correctly.
169
+ */
170
+ bool main_script;
171
+
172
+ /**
173
+ * When the file being parsed is considered a "partial" script, jumps will
174
+ * not be marked as errors if they are not contained within loops/blocks.
175
+ * This is used in the case that you're parsing a script that you know will
176
+ * be embedded inside another script later, but you do not have that context
177
+ * yet. For example, when parsing an ERB template that will be evaluated
178
+ * inside another script.
179
+ */
180
+ bool partial_script;
181
+
182
+ /**
183
+ * Whether or not the parser should freeze the nodes that it creates. This
184
+ * makes it possible to have a deeply frozen AST that is safe to share
185
+ * between concurrency primitives.
186
+ */
187
+ bool freeze;
81
188
  } pm_options_t;
82
189
 
190
+ /**
191
+ * A bit representing whether or not the command line -a option was set. -a
192
+ * splits the input line $_ into $F.
193
+ */
194
+ static const uint8_t PM_OPTIONS_COMMAND_LINE_A = 0x1;
195
+
196
+ /**
197
+ * A bit representing whether or not the command line -e option was set. -e
198
+ * allow the user to specify a script to be executed. This is necessary for
199
+ * prism to know because certain warnings are not generated when -e is used.
200
+ */
201
+ static const uint8_t PM_OPTIONS_COMMAND_LINE_E = 0x2;
202
+
203
+ /**
204
+ * A bit representing whether or not the command line -l option was set. -l
205
+ * chomps the input line by default.
206
+ */
207
+ static const uint8_t PM_OPTIONS_COMMAND_LINE_L = 0x4;
208
+
209
+ /**
210
+ * A bit representing whether or not the command line -n option was set. -n
211
+ * wraps the script in a while gets loop.
212
+ */
213
+ static const uint8_t PM_OPTIONS_COMMAND_LINE_N = 0x8;
214
+
215
+ /**
216
+ * A bit representing whether or not the command line -p option was set. -p
217
+ * prints the value of $_ at the end of each loop.
218
+ */
219
+ static const uint8_t PM_OPTIONS_COMMAND_LINE_P = 0x10;
220
+
221
+ /**
222
+ * A bit representing whether or not the command line -x option was set. -x
223
+ * searches the input file for a shebang that matches the current Ruby engine.
224
+ */
225
+ static const uint8_t PM_OPTIONS_COMMAND_LINE_X = 0x20;
226
+
227
+ /**
228
+ * Set the shebang callback option on the given options struct.
229
+ *
230
+ * @param options The options struct to set the shebang callback on.
231
+ * @param shebang_callback The shebang callback to set.
232
+ * @param shebang_callback_data Any additional data that should be passed along
233
+ * to the callback.
234
+ */
235
+ PRISM_EXPORTED_FUNCTION void pm_options_shebang_callback_set(pm_options_t *options, pm_options_shebang_callback_t shebang_callback, void *shebang_callback_data);
236
+
83
237
  /**
84
238
  * Set the filepath option on the given options struct.
85
239
  *
@@ -104,6 +258,14 @@ PRISM_EXPORTED_FUNCTION void pm_options_line_set(pm_options_t *options, int32_t
104
258
  */
105
259
  PRISM_EXPORTED_FUNCTION void pm_options_encoding_set(pm_options_t *options, const char *encoding);
106
260
 
261
+ /**
262
+ * Set the encoding_locked option on the given options struct.
263
+ *
264
+ * @param options The options struct to set the encoding_locked value on.
265
+ * @param encoding_locked The encoding_locked value to set.
266
+ */
267
+ PRISM_EXPORTED_FUNCTION void pm_options_encoding_locked_set(pm_options_t *options, bool encoding_locked);
268
+
107
269
  /**
108
270
  * Set the frozen string literal option on the given options struct.
109
271
  *
@@ -112,6 +274,14 @@ PRISM_EXPORTED_FUNCTION void pm_options_encoding_set(pm_options_t *options, cons
112
274
  */
113
275
  PRISM_EXPORTED_FUNCTION void pm_options_frozen_string_literal_set(pm_options_t *options, bool frozen_string_literal);
114
276
 
277
+ /**
278
+ * Sets the command line option on the given options struct.
279
+ *
280
+ * @param options The options struct to set the command line option on.
281
+ * @param command_line The command_line value to set.
282
+ */
283
+ PRISM_EXPORTED_FUNCTION void pm_options_command_line_set(pm_options_t *options, uint8_t command_line);
284
+
115
285
  /**
116
286
  * Set the version option on the given options struct by parsing the given
117
287
  * string. If the string contains an invalid option, this returns false.
@@ -124,13 +294,38 @@ PRISM_EXPORTED_FUNCTION void pm_options_frozen_string_literal_set(pm_options_t *
124
294
  */
125
295
  PRISM_EXPORTED_FUNCTION bool pm_options_version_set(pm_options_t *options, const char *version, size_t length);
126
296
 
297
+ /**
298
+ * Set the main script option on the given options struct.
299
+ *
300
+ * @param options The options struct to set the main script value on.
301
+ * @param main_script The main script value to set.
302
+ */
303
+ PRISM_EXPORTED_FUNCTION void pm_options_main_script_set(pm_options_t *options, bool main_script);
304
+
305
+ /**
306
+ * Set the partial script option on the given options struct.
307
+ *
308
+ * @param options The options struct to set the partial script value on.
309
+ * @param partial_script The partial script value to set.
310
+ */
311
+ PRISM_EXPORTED_FUNCTION void pm_options_partial_script_set(pm_options_t *options, bool partial_script);
312
+
313
+ /**
314
+ * Set the freeze option on the given options struct.
315
+ *
316
+ * @param options The options struct to set the freeze value on.
317
+ * @param freeze The freeze value to set.
318
+ */
319
+ PRISM_EXPORTED_FUNCTION void pm_options_freeze_set(pm_options_t *options, bool freeze);
320
+
127
321
  /**
128
322
  * Allocate and zero out the scopes array on the given options struct.
129
323
  *
130
324
  * @param options The options struct to initialize the scopes array on.
131
325
  * @param scopes_count The number of scopes to allocate.
326
+ * @return Whether or not the scopes array was initialized successfully.
132
327
  */
133
- PRISM_EXPORTED_FUNCTION void pm_options_scopes_init(pm_options_t *options, size_t scopes_count);
328
+ PRISM_EXPORTED_FUNCTION bool pm_options_scopes_init(pm_options_t *options, size_t scopes_count);
134
329
 
135
330
  /**
136
331
  * Return a pointer to the scope at the given index within the given options.
@@ -147,8 +342,9 @@ PRISM_EXPORTED_FUNCTION const pm_options_scope_t * pm_options_scope_get(const pm
147
342
  *
148
343
  * @param scope The scope struct to initialize.
149
344
  * @param locals_count The number of locals to allocate.
345
+ * @return Whether or not the scope was initialized successfully.
150
346
  */
151
- PRISM_EXPORTED_FUNCTION void pm_options_scope_init(pm_options_scope_t *scope, size_t locals_count);
347
+ PRISM_EXPORTED_FUNCTION bool pm_options_scope_init(pm_options_scope_t *scope, size_t locals_count);
152
348
 
153
349
  /**
154
350
  * Return a pointer to the local at the given index within the given scope.
@@ -159,6 +355,14 @@ PRISM_EXPORTED_FUNCTION void pm_options_scope_init(pm_options_scope_t *scope, si
159
355
  */
160
356
  PRISM_EXPORTED_FUNCTION const pm_string_t * pm_options_scope_local_get(const pm_options_scope_t *scope, size_t index);
161
357
 
358
+ /**
359
+ * Set the forwarding option on the given scope struct.
360
+ *
361
+ * @param scope The scope struct to set the forwarding on.
362
+ * @param forwarding The forwarding value to set.
363
+ */
364
+ PRISM_EXPORTED_FUNCTION void pm_options_scope_forwarding_set(pm_options_scope_t *scope, uint8_t forwarding);
365
+
162
366
  /**
163
367
  * Free the internal memory associated with the options.
164
368
  *
@@ -184,8 +388,15 @@ PRISM_EXPORTED_FUNCTION void pm_options_free(pm_options_t *options);
184
388
  * | `4` | the length the encoding |
185
389
  * | ... | the encoding bytes |
186
390
  * | `1` | frozen string literal |
187
- * | `1` | suppress warnings |
391
+ * | `1` | -p command line option |
392
+ * | `1` | -n command line option |
393
+ * | `1` | -l command line option |
394
+ * | `1` | -a command line option |
188
395
  * | `1` | the version |
396
+ * | `1` | encoding locked |
397
+ * | `1` | main script |
398
+ * | `1` | partial script |
399
+ * | `1` | freeze |
189
400
  * | `4` | the number of scopes |
190
401
  * | ... | the scopes |
191
402
  *
@@ -196,14 +407,15 @@ PRISM_EXPORTED_FUNCTION void pm_options_free(pm_options_t *options);
196
407
  * | `0` | use the latest version of prism |
197
408
  * | `1` | use the version of prism that is vendored in CRuby 3.3.0 |
198
409
  *
199
- * Each scope is layed out as follows:
410
+ * Each scope is laid out as follows:
200
411
  *
201
412
  * | # bytes | field |
202
413
  * | ------- | -------------------------- |
203
414
  * | `4` | the number of locals |
415
+ * | `1` | the forwarding flags |
204
416
  * | ... | the locals |
205
417
  *
206
- * Each local is layed out as follows:
418
+ * Each local is laid out as follows:
207
419
  *
208
420
  * | # bytes | field |
209
421
  * | ------- | -------------------------- |
@@ -218,8 +430,8 @@ PRISM_EXPORTED_FUNCTION void pm_options_free(pm_options_t *options);
218
430
  * * The encoding can have a length of 0, in which case we'll use the default
219
431
  * encoding (UTF-8). If it's not 0, it should correspond to a name of an
220
432
  * encoding that can be passed to `Encoding.find` in Ruby.
221
- * * The frozen string literal and suppress warnings fields are booleans, so
222
- * their values should be either 0 or 1.
433
+ * * The frozen string literal, encoding locked, main script, and partial script
434
+ * fields are booleans, so their values should be either 0 or 1.
223
435
  * * The number of scopes can be 0.
224
436
  *
225
437
  * @param options The options struct to deserialize into.
data/include/prism/pack.h CHANGED
@@ -8,6 +8,15 @@
8
8
 
9
9
  #include "prism/defines.h"
10
10
 
11
+ // We optionally support parsing String#pack templates. For systems that don't
12
+ // want or need this functionality, it can be turned off with the
13
+ // PRISM_EXCLUDE_PACK define.
14
+ #ifdef PRISM_EXCLUDE_PACK
15
+
16
+ void pm_pack_parse(void);
17
+
18
+ #else
19
+
11
20
  #include <stdint.h>
12
21
  #include <stdlib.h>
13
22
 
@@ -150,3 +159,5 @@ pm_pack_parse(
150
159
  PRISM_EXPORTED_FUNCTION size_t pm_size_to_native(pm_pack_size size);
151
160
 
152
161
  #endif
162
+
163
+ #endif