Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/cherryramatisdev/regexer
/ parse
Function
parse
regexer/src/lib.rs:4–9 ·
view source on GitHub ↗
(input: String)
Source
from the content-addressed store, hash-verified
2
mod transpiler;
3
4
pub fn parse(input: String) -> String {
5
let tokens = lexer::tokens::tokenize(input);
6
let ast = lexer::ast::parse(tokens);
7
8
return transpiler::regex::transpile(ast);
9
}
Callers
2
main
Function · 0.50
on_event
Method · 0.50
Calls
2
tokenize
Function · 0.85
transpile
Function · 0.85
Tested by
no test coverage detected