-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move C runtime to new parsing machine design #41
Comments
Would be nice if the AST substrings are slices into the original string |
Yes, makes sense. Would the idea be to change AST_CHAR to AST_SPLICE, or to add AST_SPLICE as a new type? Something else entirely? |
Yes, something like that. Something like typedef struct _string_view {
// Does not own the pointer
char *pointer;
size_t size;
} string_view; Ideas for naming:
The |
Sounds good. |
Based on the in-progress Java version? Also see the new JavaScript version.
The text was updated successfully, but these errors were encountered: