|
Prism Ruby parser
|
A list of byte offsets of newlines in a string. More...
#include "prism/defines.h"#include <assert.h>#include <stdbool.h>#include <stddef.h>#include <stdlib.h>

Go to the source code of this file.
Data Structures | |
| struct | pm_newline_list_t |
| A list of offsets of newlines in a string. More... | |
| struct | pm_line_column_t |
| A line and column in a string. More... | |
Functions | |
| bool | pm_newline_list_init (pm_newline_list_t *list, size_t capacity) |
| Initialize a new newline list with the given capacity. | |
| void | pm_newline_list_clear (pm_newline_list_t *list) |
| Clear out the newlines that have been appended to the list. | |
| bool | pm_newline_list_append (pm_newline_list_t *list, uint32_t cursor) |
| Append a new offset to the newline list. | |
| int32_t | pm_newline_list_line (const pm_newline_list_t *list, uint32_t cursor, int32_t start_line) |
| Returns the line of the given offset. | |
| pm_line_column_t | pm_newline_list_line_column (const pm_newline_list_t *list, uint32_t cursor, int32_t start_line) |
| Returns the line and column of the given offset. | |
| void | pm_newline_list_free (pm_newline_list_t *list) |
| Free the internal memory allocated for the newline list. | |
A list of byte offsets of newlines in a string.
When compiling the syntax tree, it's necessary to know the line and column of many nodes. This is necessary to support things like error messages, tracepoints, etc.
It's possible that we could store the start line, start column, end line, and end column on every node in addition to the offsets that we already store, but that would be quite a lot of memory overhead.
| bool pm_newline_list_init | ( | pm_newline_list_t * | list, |
| size_t | capacity | ||
| ) |
Initialize a new newline list with the given capacity.
Returns true if the allocation of the offsets succeeds, otherwise returns false.
| list | The list to initialize. |
| capacity | The initial capacity of the list. |
Returns true if the allocation of the offsets succeeds, otherwise returns false.
| void pm_newline_list_clear | ( | pm_newline_list_t * | list | ) |
Clear out the newlines that have been appended to the list.
| list | The list to clear. |
| bool pm_newline_list_append | ( | pm_newline_list_t * | list, |
| uint32_t | cursor | ||
| ) |
Append a new offset to the newline list.
Returns true if the reallocation of the offsets succeeds (if one was necessary), otherwise returns false.
| list | The list to append to. |
| cursor | The offset to append. |
Returns true if the reallocation of the offsets succeeds (if one was necessary), otherwise returns false.
| int32_t pm_newline_list_line | ( | const pm_newline_list_t * | list, |
| uint32_t | cursor, | ||
| int32_t | start_line | ||
| ) |
Returns the line of the given offset.
If the offset is not in the list, the line of the closest offset less than the given offset is returned.
| list | The list to search. |
| cursor | The offset to search for. |
| start_line | The line to start counting from. |
If the offset is not in the list, the line of the closest offset less than the given offset is returned.
| pm_line_column_t pm_newline_list_line_column | ( | const pm_newline_list_t * | list, |
| uint32_t | cursor, | ||
| int32_t | start_line | ||
| ) |
Returns the line and column of the given offset.
If the offset is not in the list, the line and column of the closest offset less than the given offset are returned.
| list | The list to search. |
| cursor | The offset to search for. |
| start_line | The line to start counting from. |
If the offset is not in the list, the line and column of the closest offset less than the given offset are returned.
| void pm_newline_list_free | ( | pm_newline_list_t * | list | ) |
Free the internal memory allocated for the newline list.
| list | The list to free. |