6 releases
0.2.1 | Jul 23, 2024 |
---|---|
0.2.0 | Feb 16, 2024 |
0.1.3 | Feb 11, 2024 |
0.1.2 | Jan 10, 2024 |
0.1.0 | Jun 2, 2023 |
#138 in Text editors
21 downloads per month
42KB
1K
SLoC
Example
use sourcepawn_lsp::lexer::SourcepawnLexer;
fn main() {
let lexer = SourcepawnLexer::new("int foo = 0;");
for token in lexer {
match token.token_kind {
TokenKind::Literal(_) | TokenKind::Comment(_) => println("{:#?}", token.text()),
_ => (),
}
}
}
Dependencies
~6–8MB
~135K SLoC