Update syntax parser system.

This commit is contained in:
2026-08-20 19:33:45 +01:00
parent 1489b08d57
commit 6ea03d651a
8 changed files with 357 additions and 155 deletions
+4 -1
View File
@@ -99,5 +99,8 @@ struct RubyParser {
}
};
void ruby_parse(void **v_state, std::string_view line, bool first_line, std::vector<Token> *);
void ruby_parse(
void **v_state, std::string_view line, bool first_line,
std::vector<Token> *tokens, std::vector<ParseEvent> *events
);
} // namespace bed::internal::syntax::ruby