squawk-lexer 2.45.0

Linter for Postgres migrations & SQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
---
source: crates/squawk_lexer/src/lib.rs
expression: "lex(r#\"\n\"hello &1 -world\";\n\n\n\"hello-world\n\"#)"
---
[
    "\n" @ Whitespace,
    "\"hello &1 -world\"" @ QuotedIdent { terminated: true },
    ";" @ Semi,
    "\n\n\n" @ Whitespace,
    "\"hello-world\n" @ QuotedIdent { terminated: false },
]