6 个版本
0.2.1 | 2024年7月23日 |
---|---|
0.2.0 | 2024年2月16日 |
0.1.3 | 2024年2月11日 |
0.1.2 | 2024年1月10日 |
0.1.0 | 2023年6月2日 |
#7 in #logo
每月225 次下载
42KB
1K SLoC
示例
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()),
_ => (),
}
}
}
依赖项
~6–8MB
~148K SLoC