ladybird/Userland/Libraries/LibSQL/AST
Lenny Maiorani f912a48315 Userland: Change static const variables to static constexpr
`static const` variables can be computed and initialized at run-time
during initialization or the first time a function is called. Change
them to `static constexpr` to ensure they are computed at
compile-time.

This allows some removal of `strlen` because the length of the
`StringView` can be used which is pre-computed at compile-time.
2022-03-18 19:58:57 +01:00
..
AST.h Libraries: Use default constructors/destructors in LibSQL 2022-03-13 22:34:38 +01:00
CreateSchema.cpp LibSQL+SQLServer: Introduce and use ResultOr<ValueType> 2022-02-10 23:11:13 +01:00
CreateTable.cpp LibSQL+SQLServer: Introduce and use ResultOr<ValueType> 2022-02-10 23:11:13 +01:00
Describe.cpp LibSQL+SQLServer: Introduce and use ResultOr<ValueType> 2022-02-10 23:11:13 +01:00
Expression.cpp Userland: Change static const variables to static constexpr 2022-03-18 19:58:57 +01:00
Insert.cpp LibSQL: Remove the now-unused ExecutionContext::result object 2022-02-10 23:11:13 +01:00
Lexer.cpp Everywhere: Update copyrights with my new serenityos.org e-mail :^) 2022-01-31 18:23:22 +00:00
Lexer.h Everywhere: Update copyrights with my new serenityos.org e-mail :^) 2022-01-31 18:23:22 +00:00
Parser.cpp LibSQL: Update list of expected statements 2022-02-09 15:35:37 +00:00
Parser.h LibSQL: Implement a DESCRIBE TABLE statement 2022-02-05 00:35:03 +01:00
Select.cpp LibSQL: Remove the now-unused ExecutionContext::result object 2022-02-10 23:11:13 +01:00
Statement.cpp LibSQL: Remove the now-unused ExecutionContext::result object 2022-02-10 23:11:13 +01:00
SyntaxHighlighter.cpp Libraries: Use default constructors/destructors in LibSQL 2022-03-13 22:34:38 +01:00
SyntaxHighlighter.h Libraries: Use default constructors/destructors in LibSQL 2022-03-13 22:34:38 +01:00
Token.cpp Everywhere: Update copyrights with my new serenityos.org e-mail :^) 2022-01-31 18:23:22 +00:00
Token.h LibSQL: Implement a DESCRIBE TABLE statement 2022-02-05 00:35:03 +01:00