ladybird/Userland/Libraries/LibSQL/AST
Tim Ledbetter 896d1e4f42 LibSQL: Handle statements with malformed exists expressions correctly
Previously, statements containing malformed exists expressions such as:

`INSERT INTO t(a) VALUES (SELECT 1)`;

could cause the parser to crash. The parser will now return an error
message instead.
2023-04-25 08:32:21 -04:00
..
AST.h Everywhere: Remove NonnullRefPtr.h includes 2023-03-06 23:46:35 +01:00
CreateSchema.cpp
CreateTable.cpp Everywhere: Stop using NonnullRefPtrVector 2023-03-06 23:46:35 +01:00
Delete.cpp
Describe.cpp Everywhere: Stop using NonnullRefPtrVector 2023-03-06 23:46:35 +01:00
Expression.cpp Everywhere: Stop using NonnullRefPtrVector 2023-03-06 23:46:35 +01:00
Insert.cpp Everywhere: Stop using NonnullRefPtrVector 2023-03-06 23:46:35 +01:00
Lexer.cpp
Lexer.h
Parser.cpp LibSQL: Handle statements with malformed exists expressions correctly 2023-04-25 08:32:21 -04:00
Parser.h LibSQL: Handle statements with malformed exists expressions correctly 2023-04-25 08:32:21 -04:00
Select.cpp Everywhere: Stop using NonnullRefPtrVector 2023-03-06 23:46:35 +01:00
Statement.cpp
SyntaxHighlighter.cpp LibSyntax+Libraries: Replace TextStyle with Gfx::TextAttributes 2023-03-15 14:55:49 +01:00
SyntaxHighlighter.h
Token.cpp
Token.h
Update.cpp