squawk-lexer 2.48.0

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