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
@@ -7,6 +7,7 @@
|
|
7
7
|
#define PRISM_BUFFER_H
|
8
8
|
|
9
9
|
#include "prism/defines.h"
|
10
|
+
#include "prism/util/pm_char.h"
|
10
11
|
|
11
12
|
#include <assert.h>
|
12
13
|
#include <stdbool.h>
|
@@ -59,7 +60,7 @@ PRISM_EXPORTED_FUNCTION bool pm_buffer_init(pm_buffer_t *buffer);
|
|
59
60
|
* @param buffer The buffer to get the value of.
|
60
61
|
* @returns The value of the buffer.
|
61
62
|
*/
|
62
|
-
PRISM_EXPORTED_FUNCTION char * pm_buffer_value(pm_buffer_t *buffer);
|
63
|
+
PRISM_EXPORTED_FUNCTION char * pm_buffer_value(const pm_buffer_t *buffer);
|
63
64
|
|
64
65
|
/**
|
65
66
|
* Return the length of the buffer.
|
@@ -67,7 +68,7 @@ PRISM_EXPORTED_FUNCTION char * pm_buffer_value(pm_buffer_t *buffer);
|
|
67
68
|
* @param buffer The buffer to get the length of.
|
68
69
|
* @returns The length of the buffer.
|
69
70
|
*/
|
70
|
-
PRISM_EXPORTED_FUNCTION size_t pm_buffer_length(pm_buffer_t *buffer);
|
71
|
+
PRISM_EXPORTED_FUNCTION size_t pm_buffer_length(const pm_buffer_t *buffer);
|
71
72
|
|
72
73
|
/**
|
73
74
|
* Append the given amount of space as zeroes to the buffer.
|
@@ -128,6 +129,43 @@ void pm_buffer_append_varuint(pm_buffer_t *buffer, uint32_t value);
|
|
128
129
|
*/
|
129
130
|
void pm_buffer_append_varsint(pm_buffer_t *buffer, int32_t value);
|
130
131
|
|
132
|
+
/**
|
133
|
+
* Append a double to the buffer.
|
134
|
+
*
|
135
|
+
* @param buffer The buffer to append to.
|
136
|
+
* @param value The double to append.
|
137
|
+
*/
|
138
|
+
void pm_buffer_append_double(pm_buffer_t *buffer, double value);
|
139
|
+
|
140
|
+
/**
|
141
|
+
* Append a unicode codepoint to the buffer.
|
142
|
+
*
|
143
|
+
* @param buffer The buffer to append to.
|
144
|
+
* @param value The character to append.
|
145
|
+
* @returns True if the codepoint was valid and appended successfully, false
|
146
|
+
* otherwise.
|
147
|
+
*/
|
148
|
+
bool pm_buffer_append_unicode_codepoint(pm_buffer_t *buffer, uint32_t value);
|
149
|
+
|
150
|
+
/**
|
151
|
+
* The different types of escaping that can be performed by the buffer when
|
152
|
+
* appending a slice of Ruby source code.
|
153
|
+
*/
|
154
|
+
typedef enum {
|
155
|
+
PM_BUFFER_ESCAPING_RUBY,
|
156
|
+
PM_BUFFER_ESCAPING_JSON
|
157
|
+
} pm_buffer_escaping_t;
|
158
|
+
|
159
|
+
/**
|
160
|
+
* Append a slice of source code to the buffer.
|
161
|
+
*
|
162
|
+
* @param buffer The buffer to append to.
|
163
|
+
* @param source The source code to append.
|
164
|
+
* @param length The length of the source code to append.
|
165
|
+
* @param escaping The type of escaping to perform.
|
166
|
+
*/
|
167
|
+
void pm_buffer_append_source(pm_buffer_t *buffer, const uint8_t *source, size_t length, pm_buffer_escaping_t escaping);
|
168
|
+
|
131
169
|
/**
|
132
170
|
* Prepend the given string to the buffer.
|
133
171
|
*
|
@@ -145,6 +183,41 @@ void pm_buffer_prepend_string(pm_buffer_t *buffer, const char *value, size_t len
|
|
145
183
|
*/
|
146
184
|
void pm_buffer_concat(pm_buffer_t *destination, const pm_buffer_t *source);
|
147
185
|
|
186
|
+
/**
|
187
|
+
* Clear the buffer by reducing its size to 0. This does not free the allocated
|
188
|
+
* memory, but it does allow the buffer to be reused.
|
189
|
+
*
|
190
|
+
* @param buffer The buffer to clear.
|
191
|
+
*/
|
192
|
+
void pm_buffer_clear(pm_buffer_t *buffer);
|
193
|
+
|
194
|
+
/**
|
195
|
+
* Strip the whitespace from the end of the buffer.
|
196
|
+
*
|
197
|
+
* @param buffer The buffer to strip.
|
198
|
+
*/
|
199
|
+
void pm_buffer_rstrip(pm_buffer_t *buffer);
|
200
|
+
|
201
|
+
/**
|
202
|
+
* Checks if the buffer includes the given value.
|
203
|
+
*
|
204
|
+
* @param buffer The buffer to check.
|
205
|
+
* @param value The value to check for.
|
206
|
+
* @returns The index of the first occurrence of the value in the buffer, or
|
207
|
+
* SIZE_MAX if the value is not found.
|
208
|
+
*/
|
209
|
+
size_t pm_buffer_index(const pm_buffer_t *buffer, char value);
|
210
|
+
|
211
|
+
/**
|
212
|
+
* Insert the given string into the buffer at the given index.
|
213
|
+
*
|
214
|
+
* @param buffer The buffer to insert into.
|
215
|
+
* @param index The index to insert at.
|
216
|
+
* @param value The string to insert.
|
217
|
+
* @param length The length of the string to insert.
|
218
|
+
*/
|
219
|
+
void pm_buffer_insert(pm_buffer_t *buffer, size_t index, const char *value, size_t length);
|
220
|
+
|
148
221
|
/**
|
149
222
|
* Free the memory associated with the buffer.
|
150
223
|
*
|
@@ -34,8 +34,7 @@ size_t pm_strspn_whitespace(const uint8_t *string, ptrdiff_t length);
|
|
34
34
|
* @return The number of characters at the start of the string that are
|
35
35
|
* whitespace.
|
36
36
|
*/
|
37
|
-
size_t
|
38
|
-
pm_strspn_whitespace_newlines(const uint8_t *string, ptrdiff_t length, pm_newline_list_t *newline_list);
|
37
|
+
size_t pm_strspn_whitespace_newlines(const uint8_t *string, ptrdiff_t length, pm_newline_list_t *newline_list);
|
39
38
|
|
40
39
|
/**
|
41
40
|
* Returns the number of characters at the start of the string that are inline
|
@@ -51,6 +51,14 @@ typedef struct {
|
|
51
51
|
*/
|
52
52
|
void pm_constant_id_list_init(pm_constant_id_list_t *list);
|
53
53
|
|
54
|
+
/**
|
55
|
+
* Initialize a list of constant ids with a given capacity.
|
56
|
+
*
|
57
|
+
* @param list The list to initialize.
|
58
|
+
* @param capacity The initial capacity of the list.
|
59
|
+
*/
|
60
|
+
void pm_constant_id_list_init_capacity(pm_constant_id_list_t *list, size_t capacity);
|
61
|
+
|
54
62
|
/**
|
55
63
|
* Append a constant id to a list of constant ids. Returns false if any
|
56
64
|
* potential reallocations fail.
|
@@ -61,6 +69,15 @@ void pm_constant_id_list_init(pm_constant_id_list_t *list);
|
|
61
69
|
*/
|
62
70
|
bool pm_constant_id_list_append(pm_constant_id_list_t *list, pm_constant_id_t id);
|
63
71
|
|
72
|
+
/**
|
73
|
+
* Insert a constant id into a list of constant ids at the specified index.
|
74
|
+
*
|
75
|
+
* @param list The list to insert into.
|
76
|
+
* @param index The index at which to insert.
|
77
|
+
* @param id The id to insert.
|
78
|
+
*/
|
79
|
+
void pm_constant_id_list_insert(pm_constant_id_list_t *list, size_t index, pm_constant_id_t id);
|
80
|
+
|
64
81
|
/**
|
65
82
|
* Checks if the current constant id list includes the given constant id.
|
66
83
|
*
|
@@ -70,14 +87,6 @@ bool pm_constant_id_list_append(pm_constant_id_list_t *list, pm_constant_id_t id
|
|
70
87
|
*/
|
71
88
|
bool pm_constant_id_list_includes(pm_constant_id_list_t *list, pm_constant_id_t id);
|
72
89
|
|
73
|
-
/**
|
74
|
-
* Get the memory size of a list of constant ids.
|
75
|
-
*
|
76
|
-
* @param list The list to get the memory size of.
|
77
|
-
* @return The memory size of the list.
|
78
|
-
*/
|
79
|
-
size_t pm_constant_id_list_memsize(pm_constant_id_list_t *list);
|
80
|
-
|
81
90
|
/**
|
82
91
|
* Free the memory associated with a list of constant ids.
|
83
92
|
*
|
@@ -186,7 +195,7 @@ pm_constant_id_t pm_constant_pool_insert_shared(pm_constant_pool_t *pool, const
|
|
186
195
|
* @param length The length of the constant.
|
187
196
|
* @return The id of the constant.
|
188
197
|
*/
|
189
|
-
pm_constant_id_t pm_constant_pool_insert_owned(pm_constant_pool_t *pool,
|
198
|
+
pm_constant_id_t pm_constant_pool_insert_owned(pm_constant_pool_t *pool, uint8_t *start, size_t length);
|
190
199
|
|
191
200
|
/**
|
192
201
|
* Insert a constant into a constant pool from memory that is constant. Returns
|
@@ -0,0 +1,126 @@
|
|
1
|
+
/**
|
2
|
+
* @file pm_integer.h
|
3
|
+
*
|
4
|
+
* This module provides functions for working with arbitrary-sized integers.
|
5
|
+
*/
|
6
|
+
#ifndef PRISM_NUMBER_H
|
7
|
+
#define PRISM_NUMBER_H
|
8
|
+
|
9
|
+
#include "prism/defines.h"
|
10
|
+
#include "prism/util/pm_buffer.h"
|
11
|
+
|
12
|
+
#include <assert.h>
|
13
|
+
#include <stdbool.h>
|
14
|
+
#include <stdint.h>
|
15
|
+
#include <stdlib.h>
|
16
|
+
|
17
|
+
/**
|
18
|
+
* A structure represents an arbitrary-sized integer.
|
19
|
+
*/
|
20
|
+
typedef struct {
|
21
|
+
/**
|
22
|
+
* The number of allocated values. length is set to 0 if the integer fits
|
23
|
+
* into uint32_t.
|
24
|
+
*/
|
25
|
+
size_t length;
|
26
|
+
|
27
|
+
/**
|
28
|
+
* List of 32-bit integers. Set to NULL if the integer fits into uint32_t.
|
29
|
+
*/
|
30
|
+
uint32_t *values;
|
31
|
+
|
32
|
+
/**
|
33
|
+
* Embedded value for small integer. This value is set to 0 if the value
|
34
|
+
* does not fit into uint32_t.
|
35
|
+
*/
|
36
|
+
uint32_t value;
|
37
|
+
|
38
|
+
/**
|
39
|
+
* Whether or not the integer is negative. It is stored this way so that a
|
40
|
+
* zeroed pm_integer_t is always positive zero.
|
41
|
+
*/
|
42
|
+
bool negative;
|
43
|
+
} pm_integer_t;
|
44
|
+
|
45
|
+
/**
|
46
|
+
* An enum controlling the base of an integer. It is expected that the base is
|
47
|
+
* already known before parsing the integer, even though it could be derived
|
48
|
+
* from the string itself.
|
49
|
+
*/
|
50
|
+
typedef enum {
|
51
|
+
/** The default decimal base, with no prefix. Leading 0s will be ignored. */
|
52
|
+
PM_INTEGER_BASE_DEFAULT,
|
53
|
+
|
54
|
+
/** The binary base, indicated by a 0b or 0B prefix. */
|
55
|
+
PM_INTEGER_BASE_BINARY,
|
56
|
+
|
57
|
+
/** The octal base, indicated by a 0, 0o, or 0O prefix. */
|
58
|
+
PM_INTEGER_BASE_OCTAL,
|
59
|
+
|
60
|
+
/** The decimal base, indicated by a 0d, 0D, or empty prefix. */
|
61
|
+
PM_INTEGER_BASE_DECIMAL,
|
62
|
+
|
63
|
+
/** The hexadecimal base, indicated by a 0x or 0X prefix. */
|
64
|
+
PM_INTEGER_BASE_HEXADECIMAL,
|
65
|
+
|
66
|
+
/**
|
67
|
+
* An unknown base, in which case pm_integer_parse will derive it based on
|
68
|
+
* the content of the string. This is less efficient and does more
|
69
|
+
* comparisons, so if callers know the base ahead of time, they should use
|
70
|
+
* that instead.
|
71
|
+
*/
|
72
|
+
PM_INTEGER_BASE_UNKNOWN
|
73
|
+
} pm_integer_base_t;
|
74
|
+
|
75
|
+
/**
|
76
|
+
* Parse an integer from a string. This assumes that the format of the integer
|
77
|
+
* has already been validated, as internal validation checks are not performed
|
78
|
+
* here.
|
79
|
+
*
|
80
|
+
* @param integer The integer to parse into.
|
81
|
+
* @param base The base of the integer.
|
82
|
+
* @param start The start of the string.
|
83
|
+
* @param end The end of the string.
|
84
|
+
*/
|
85
|
+
void pm_integer_parse(pm_integer_t *integer, pm_integer_base_t base, const uint8_t *start, const uint8_t *end);
|
86
|
+
|
87
|
+
/**
|
88
|
+
* Compare two integers. This function returns -1 if the left integer is less
|
89
|
+
* than the right integer, 0 if they are equal, and 1 if the left integer is
|
90
|
+
* greater than the right integer.
|
91
|
+
*
|
92
|
+
* @param left The left integer to compare.
|
93
|
+
* @param right The right integer to compare.
|
94
|
+
* @return The result of the comparison.
|
95
|
+
*/
|
96
|
+
int pm_integer_compare(const pm_integer_t *left, const pm_integer_t *right);
|
97
|
+
|
98
|
+
/**
|
99
|
+
* Reduce a ratio of integers to its simplest form.
|
100
|
+
*
|
101
|
+
* If either the numerator or denominator do not fit into a 32-bit integer, then
|
102
|
+
* this function is a no-op. In the future, we may consider reducing even the
|
103
|
+
* larger numbers, but for now we're going to keep it simple.
|
104
|
+
*
|
105
|
+
* @param numerator The numerator of the ratio.
|
106
|
+
* @param denominator The denominator of the ratio.
|
107
|
+
*/
|
108
|
+
void pm_integers_reduce(pm_integer_t *numerator, pm_integer_t *denominator);
|
109
|
+
|
110
|
+
/**
|
111
|
+
* Convert an integer to a decimal string.
|
112
|
+
*
|
113
|
+
* @param buffer The buffer to append the string to.
|
114
|
+
* @param integer The integer to convert to a string.
|
115
|
+
*/
|
116
|
+
PRISM_EXPORTED_FUNCTION void pm_integer_string(pm_buffer_t *buffer, const pm_integer_t *integer);
|
117
|
+
|
118
|
+
/**
|
119
|
+
* Free the internal memory of an integer. This memory will only be allocated if
|
120
|
+
* the integer exceeds the size of a single node in the linked list.
|
121
|
+
*
|
122
|
+
* @param integer The integer to free.
|
123
|
+
*/
|
124
|
+
PRISM_EXPORTED_FUNCTION void pm_integer_free(pm_integer_t *integer);
|
125
|
+
|
126
|
+
#endif
|
@@ -61,6 +61,14 @@ typedef struct {
|
|
61
61
|
*/
|
62
62
|
bool pm_newline_list_init(pm_newline_list_t *list, const uint8_t *start, size_t capacity);
|
63
63
|
|
64
|
+
/**
|
65
|
+
* Clear out the newlines that have been appended to the list.
|
66
|
+
*
|
67
|
+
* @param list The list to clear.
|
68
|
+
*/
|
69
|
+
void
|
70
|
+
pm_newline_list_clear(pm_newline_list_t *list);
|
71
|
+
|
64
72
|
/**
|
65
73
|
* Append a new offset to the newline list. Returns true if the reallocation of
|
66
74
|
* the offsets succeeds (if one was necessary), otherwise returns false.
|
@@ -72,6 +80,17 @@ bool pm_newline_list_init(pm_newline_list_t *list, const uint8_t *start, size_t
|
|
72
80
|
*/
|
73
81
|
bool pm_newline_list_append(pm_newline_list_t *list, const uint8_t *cursor);
|
74
82
|
|
83
|
+
/**
|
84
|
+
* Returns the line of the given offset. If the offset is not in the list, the
|
85
|
+
* line of the closest offset less than the given offset is returned.
|
86
|
+
*
|
87
|
+
* @param list The list to search.
|
88
|
+
* @param cursor A pointer to the offset to search for.
|
89
|
+
* @param start_line The line to start counting from.
|
90
|
+
* @return The line of the given offset.
|
91
|
+
*/
|
92
|
+
int32_t pm_newline_list_line(const pm_newline_list_t *list, const uint8_t *cursor, int32_t start_line);
|
93
|
+
|
75
94
|
/**
|
76
95
|
* Returns the line and column of the given offset. If the offset is not in the
|
77
96
|
* list, the line and column of the closest offset less than the given offset
|
@@ -9,6 +9,7 @@
|
|
9
9
|
#include "prism/defines.h"
|
10
10
|
|
11
11
|
#include <assert.h>
|
12
|
+
#include <errno.h>
|
12
13
|
#include <stdbool.h>
|
13
14
|
#include <stddef.h>
|
14
15
|
#include <stdlib.h>
|
@@ -17,11 +18,13 @@
|
|
17
18
|
// The following headers are necessary to read files using demand paging.
|
18
19
|
#ifdef _WIN32
|
19
20
|
#include <windows.h>
|
20
|
-
#
|
21
|
+
#elif defined(_POSIX_MAPPED_FILES)
|
21
22
|
#include <fcntl.h>
|
22
23
|
#include <sys/mman.h>
|
23
24
|
#include <sys/stat.h>
|
24
|
-
#
|
25
|
+
#elif defined(PRISM_HAS_FILESYSTEM)
|
26
|
+
#include <fcntl.h>
|
27
|
+
#include <sys/stat.h>
|
25
28
|
#endif
|
26
29
|
|
27
30
|
/**
|
@@ -45,8 +48,10 @@ typedef struct {
|
|
45
48
|
/** This string owns its memory, and should be freed using `pm_string_free`. */
|
46
49
|
PM_STRING_OWNED,
|
47
50
|
|
51
|
+
#ifdef PRISM_HAS_MMAP
|
48
52
|
/** This string is a memory-mapped file, and should be freed using `pm_string_free`. */
|
49
53
|
PM_STRING_MAPPED
|
54
|
+
#endif
|
50
55
|
} type;
|
51
56
|
} pm_string_t;
|
52
57
|
|
@@ -91,6 +96,26 @@ void pm_string_owned_init(pm_string_t *string, uint8_t *source, size_t length);
|
|
91
96
|
*/
|
92
97
|
void pm_string_constant_init(pm_string_t *string, const char *source, size_t length);
|
93
98
|
|
99
|
+
/**
|
100
|
+
* Represents the result of calling pm_string_mapped_init or
|
101
|
+
* pm_string_file_init. We need this additional information because there is
|
102
|
+
* not a platform-agnostic way to indicate that the file that was attempted to
|
103
|
+
* be opened was a directory.
|
104
|
+
*/
|
105
|
+
typedef enum {
|
106
|
+
/** Indicates that the string was successfully initialized. */
|
107
|
+
PM_STRING_INIT_SUCCESS = 0,
|
108
|
+
/**
|
109
|
+
* Indicates a generic error from a string_*_init function, where the type
|
110
|
+
* of error should be read from `errno` or `GetLastError()`.
|
111
|
+
*/
|
112
|
+
PM_STRING_INIT_ERROR_GENERIC = 1,
|
113
|
+
/**
|
114
|
+
* Indicates that the file that was attempted to be opened was a directory.
|
115
|
+
*/
|
116
|
+
PM_STRING_INIT_ERROR_DIRECTORY = 2
|
117
|
+
} pm_string_init_result_t;
|
118
|
+
|
94
119
|
/**
|
95
120
|
* Read the file indicated by the filepath parameter into source and load its
|
96
121
|
* contents and size into the given `pm_string_t`. The given `pm_string_t`
|
@@ -104,17 +129,20 @@ void pm_string_constant_init(pm_string_t *string, const char *source, size_t len
|
|
104
129
|
*
|
105
130
|
* @param string The string to initialize.
|
106
131
|
* @param filepath The filepath to read.
|
107
|
-
* @return
|
132
|
+
* @return The success of the read, indicated by the value of the enum.
|
108
133
|
*/
|
109
|
-
PRISM_EXPORTED_FUNCTION
|
134
|
+
PRISM_EXPORTED_FUNCTION pm_string_init_result_t pm_string_mapped_init(pm_string_t *string, const char *filepath);
|
110
135
|
|
111
136
|
/**
|
112
|
-
*
|
137
|
+
* Read the file indicated by the filepath parameter into source and load its
|
138
|
+
* contents and size into the given `pm_string_t`. The given `pm_string_t`
|
139
|
+
* should be freed using `pm_string_free` when it is no longer used.
|
113
140
|
*
|
114
|
-
* @param string The string to
|
115
|
-
* @
|
141
|
+
* @param string The string to initialize.
|
142
|
+
* @param filepath The filepath to read.
|
143
|
+
* @return The success of the read, indicated by the value of the enum.
|
116
144
|
*/
|
117
|
-
|
145
|
+
PRISM_EXPORTED_FUNCTION pm_string_init_result_t pm_string_file_init(pm_string_t *string, const char *filepath);
|
118
146
|
|
119
147
|
/**
|
120
148
|
* Ensure the string is owned. If it is not, then reinitialize it as owned and
|
@@ -124,6 +152,18 @@ size_t pm_string_memsize(const pm_string_t *string);
|
|
124
152
|
*/
|
125
153
|
void pm_string_ensure_owned(pm_string_t *string);
|
126
154
|
|
155
|
+
/**
|
156
|
+
* Compare the underlying lengths and bytes of two strings. Returns 0 if the
|
157
|
+
* strings are equal, a negative number if the left string is less than the
|
158
|
+
* right string, and a positive number if the left string is greater than the
|
159
|
+
* right string.
|
160
|
+
*
|
161
|
+
* @param left The left string to compare.
|
162
|
+
* @param right The right string to compare.
|
163
|
+
* @return The comparison result.
|
164
|
+
*/
|
165
|
+
int pm_string_compare(const pm_string_t *left, const pm_string_t *right);
|
166
|
+
|
127
167
|
/**
|
128
168
|
* Returns the length associated with the string.
|
129
169
|
*
|
data/include/prism/version.h
CHANGED
@@ -9,12 +9,12 @@
|
|
9
9
|
/**
|
10
10
|
* The major version of the Prism library as an int.
|
11
11
|
*/
|
12
|
-
#define PRISM_VERSION_MAJOR
|
12
|
+
#define PRISM_VERSION_MAJOR 1
|
13
13
|
|
14
14
|
/**
|
15
15
|
* The minor version of the Prism library as an int.
|
16
16
|
*/
|
17
|
-
#define PRISM_VERSION_MINOR
|
17
|
+
#define PRISM_VERSION_MINOR 4
|
18
18
|
|
19
19
|
/**
|
20
20
|
* The patch version of the Prism library as an int.
|
@@ -24,6 +24,6 @@
|
|
24
24
|
/**
|
25
25
|
* The version of the Prism library as a constant string.
|
26
26
|
*/
|
27
|
-
#define PRISM_VERSION "
|
27
|
+
#define PRISM_VERSION "1.4.0"
|
28
28
|
|
29
29
|
#endif
|
data/include/prism.h
CHANGED
@@ -9,6 +9,7 @@
|
|
9
9
|
#include "prism/defines.h"
|
10
10
|
#include "prism/util/pm_buffer.h"
|
11
11
|
#include "prism/util/pm_char.h"
|
12
|
+
#include "prism/util/pm_integer.h"
|
12
13
|
#include "prism/util/pm_memchr.h"
|
13
14
|
#include "prism/util/pm_strncasecmp.h"
|
14
15
|
#include "prism/util/pm_strpbrk.h"
|
@@ -20,10 +21,13 @@
|
|
20
21
|
#include "prism/parser.h"
|
21
22
|
#include "prism/prettyprint.h"
|
22
23
|
#include "prism/regexp.h"
|
24
|
+
#include "prism/static_literals.h"
|
23
25
|
#include "prism/version.h"
|
24
26
|
|
25
27
|
#include <assert.h>
|
26
28
|
#include <errno.h>
|
29
|
+
#include <locale.h>
|
30
|
+
#include <math.h>
|
27
31
|
#include <stdarg.h>
|
28
32
|
#include <stdbool.h>
|
29
33
|
#include <stdint.h>
|
@@ -76,6 +80,41 @@ PRISM_EXPORTED_FUNCTION void pm_parser_free(pm_parser_t *parser);
|
|
76
80
|
*/
|
77
81
|
PRISM_EXPORTED_FUNCTION pm_node_t * pm_parse(pm_parser_t *parser);
|
78
82
|
|
83
|
+
/**
|
84
|
+
* This function is used in pm_parse_stream to retrieve a line of input from a
|
85
|
+
* stream. It closely mirrors that of fgets so that fgets can be used as the
|
86
|
+
* default implementation.
|
87
|
+
*/
|
88
|
+
typedef char * (pm_parse_stream_fgets_t)(char *string, int size, void *stream);
|
89
|
+
|
90
|
+
/**
|
91
|
+
* Parse a stream of Ruby source and return the tree.
|
92
|
+
*
|
93
|
+
* @param parser The parser to use.
|
94
|
+
* @param buffer The buffer to use.
|
95
|
+
* @param stream The stream to parse.
|
96
|
+
* @param stream_fgets The function to use to read from the stream.
|
97
|
+
* @param options The optional options to use when parsing.
|
98
|
+
* @return The AST representing the source.
|
99
|
+
*/
|
100
|
+
PRISM_EXPORTED_FUNCTION pm_node_t * pm_parse_stream(pm_parser_t *parser, pm_buffer_t *buffer, void *stream, pm_parse_stream_fgets_t *stream_fgets, const pm_options_t *options);
|
101
|
+
|
102
|
+
// We optionally support serializing to a binary string. For systems that don't
|
103
|
+
// want or need this functionality, it can be turned off with the
|
104
|
+
// PRISM_EXCLUDE_SERIALIZATION define.
|
105
|
+
#ifndef PRISM_EXCLUDE_SERIALIZATION
|
106
|
+
|
107
|
+
/**
|
108
|
+
* Parse and serialize the AST represented by the source that is read out of the
|
109
|
+
* given stream into to the given buffer.
|
110
|
+
*
|
111
|
+
* @param buffer The buffer to serialize to.
|
112
|
+
* @param stream The stream to parse.
|
113
|
+
* @param stream_fgets The function to use to read from the stream.
|
114
|
+
* @param data The optional data to pass to the parser.
|
115
|
+
*/
|
116
|
+
PRISM_EXPORTED_FUNCTION void pm_serialize_parse_stream(pm_buffer_t *buffer, void *stream, pm_parse_stream_fgets_t *stream_fgets, const char *data);
|
117
|
+
|
79
118
|
/**
|
80
119
|
* Serialize the given list of comments to the given buffer.
|
81
120
|
*
|
@@ -152,6 +191,8 @@ PRISM_EXPORTED_FUNCTION void pm_serialize_lex(pm_buffer_t *buffer, const uint8_t
|
|
152
191
|
*/
|
153
192
|
PRISM_EXPORTED_FUNCTION void pm_serialize_parse_lex(pm_buffer_t *buffer, const uint8_t *source, size_t size, const char *data);
|
154
193
|
|
194
|
+
#endif
|
195
|
+
|
155
196
|
/**
|
156
197
|
* Parse the source and return true if it parses without errors or warnings.
|
157
198
|
*
|
@@ -178,14 +219,67 @@ PRISM_EXPORTED_FUNCTION const char * pm_token_type_name(pm_token_type_t token_ty
|
|
178
219
|
*/
|
179
220
|
const char * pm_token_type_human(pm_token_type_t token_type);
|
180
221
|
|
222
|
+
// We optionally support dumping to JSON. For systems that don't want or need
|
223
|
+
// this functionality, it can be turned off with the PRISM_EXCLUDE_JSON define.
|
224
|
+
#ifndef PRISM_EXCLUDE_JSON
|
225
|
+
|
226
|
+
/**
|
227
|
+
* Dump JSON to the given buffer.
|
228
|
+
*
|
229
|
+
* @param buffer The buffer to serialize to.
|
230
|
+
* @param parser The parser that parsed the node.
|
231
|
+
* @param node The node to serialize.
|
232
|
+
*/
|
233
|
+
PRISM_EXPORTED_FUNCTION void pm_dump_json(pm_buffer_t *buffer, const pm_parser_t *parser, const pm_node_t *node);
|
234
|
+
|
235
|
+
#endif
|
236
|
+
|
237
|
+
/**
|
238
|
+
* Represents the results of a slice query.
|
239
|
+
*/
|
240
|
+
typedef enum {
|
241
|
+
/** Returned if the encoding given to a slice query was invalid. */
|
242
|
+
PM_STRING_QUERY_ERROR = -1,
|
243
|
+
|
244
|
+
/** Returned if the result of the slice query is false. */
|
245
|
+
PM_STRING_QUERY_FALSE,
|
246
|
+
|
247
|
+
/** Returned if the result of the slice query is true. */
|
248
|
+
PM_STRING_QUERY_TRUE
|
249
|
+
} pm_string_query_t;
|
250
|
+
|
251
|
+
/**
|
252
|
+
* Check that the slice is a valid local variable name.
|
253
|
+
*
|
254
|
+
* @param source The source to check.
|
255
|
+
* @param length The length of the source.
|
256
|
+
* @param encoding_name The name of the encoding of the source.
|
257
|
+
* @return PM_STRING_QUERY_TRUE if the query is true, PM_STRING_QUERY_FALSE if
|
258
|
+
* the query is false, and PM_STRING_QUERY_ERROR if the encoding was invalid.
|
259
|
+
*/
|
260
|
+
PRISM_EXPORTED_FUNCTION pm_string_query_t pm_string_query_local(const uint8_t *source, size_t length, const char *encoding_name);
|
261
|
+
|
262
|
+
/**
|
263
|
+
* Check that the slice is a valid constant name.
|
264
|
+
*
|
265
|
+
* @param source The source to check.
|
266
|
+
* @param length The length of the source.
|
267
|
+
* @param encoding_name The name of the encoding of the source.
|
268
|
+
* @return PM_STRING_QUERY_TRUE if the query is true, PM_STRING_QUERY_FALSE if
|
269
|
+
* the query is false, and PM_STRING_QUERY_ERROR if the encoding was invalid.
|
270
|
+
*/
|
271
|
+
PRISM_EXPORTED_FUNCTION pm_string_query_t pm_string_query_constant(const uint8_t *source, size_t length, const char *encoding_name);
|
272
|
+
|
181
273
|
/**
|
182
|
-
*
|
274
|
+
* Check that the slice is a valid method name.
|
183
275
|
*
|
184
|
-
* @param
|
185
|
-
* @param
|
186
|
-
* @param
|
276
|
+
* @param source The source to check.
|
277
|
+
* @param length The length of the source.
|
278
|
+
* @param encoding_name The name of the encoding of the source.
|
279
|
+
* @return PM_STRING_QUERY_TRUE if the query is true, PM_STRING_QUERY_FALSE if
|
280
|
+
* the query is false, and PM_STRING_QUERY_ERROR if the encoding was invalid.
|
187
281
|
*/
|
188
|
-
PRISM_EXPORTED_FUNCTION
|
282
|
+
PRISM_EXPORTED_FUNCTION pm_string_query_t pm_string_query_method_name(const uint8_t *source, size_t length, const char *encoding_name);
|
189
283
|
|
190
284
|
/**
|
191
285
|
* @mainpage
|
data/jruby-prism.jar
CHANGED
Binary file
|
data/lib/prism/compiler.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/compiler.rb.erb
|
@@ -23,7 +24,7 @@ module Prism
|
|
23
24
|
# Prism.parse("1 + 2").value.accept(SExpressions.new)
|
24
25
|
# # => [:program, [[[:call, [[:integer], [:arguments, [[:integer]]]]]]]]
|
25
26
|
#
|
26
|
-
class Compiler
|
27
|
+
class Compiler < Visitor
|
27
28
|
# Visit an individual node.
|
28
29
|
def visit(node)
|
29
30
|
node&.accept(self)
|
@@ -300,6 +301,12 @@ module Prism
|
|
300
301
|
# Compile a InterpolatedXStringNode node
|
301
302
|
alias visit_interpolated_x_string_node visit_child_nodes
|
302
303
|
|
304
|
+
# Compile a ItLocalVariableReadNode node
|
305
|
+
alias visit_it_local_variable_read_node visit_child_nodes
|
306
|
+
|
307
|
+
# Compile a ItParametersNode node
|
308
|
+
alias visit_it_parameters_node visit_child_nodes
|
309
|
+
|
303
310
|
# Compile a KeywordHashNode node
|
304
311
|
alias visit_keyword_hash_node visit_child_nodes
|
305
312
|
|
@@ -432,6 +439,9 @@ module Prism
|
|
432
439
|
# Compile a SelfNode node
|
433
440
|
alias visit_self_node visit_child_nodes
|
434
441
|
|
442
|
+
# Compile a ShareableConstantNode node
|
443
|
+
alias visit_shareable_constant_node visit_child_nodes
|
444
|
+
|
435
445
|
# Compile a SingletonClassNode node
|
436
446
|
alias visit_singleton_class_node visit_child_nodes
|
437
447
|
|