Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-05-29 | Everywhere: Use s.unverwerth@serenityos.org :^) | Stephan Unverwerth | |
2021-04-22 | Everywhere: Use linusg@serenityos.org for my copyright headers | Linus Groh | |
2021-04-22 | Everything: Move to SPDX license identifiers in all files. | Brian Gianforcaro | |
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt * | |||
2021-04-18 | LibJS: Use 'if constexpr' / dbgln_if() instead of '#if LEXER_DEBUG' | Linus Groh | |
2021-03-01 | LibJS: Keep track of file names, lines and columns inside the AST | Jean-Baptiste Boric | |
2021-02-10 | LibJS: Remove a whole bunch of unnecessary #includes | Andreas Kling | |
2021-01-25 | Everywhere: Hook up remaining debug macros to Debug.h. | asynts | |
2021-01-25 | Everywhere: Remove unnecessary debug comments. | asynts | |
It would be tempting to uncomment these statements, but that won't work with the new changes. This was done with the following commands: find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec awk -i inplace '$0 !~ /\/\/#define/ { if (!toggle) { print; } else { toggle = !toggle } } ; $0 ~/\/\/#define/ { toggle = 1 }' {} \; find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec awk -i inplace '$0 !~ /\/\/ #define/ { if (!toggle) { print; } else { toggle = !toggle } } ; $0 ~/\/\/ #define/ { toggle = 1 }' {} \; | |||
2021-01-12 | Libraries: Move to Userland/Libraries/ | Andreas Kling | |