Itamar
|
fa18010477
|
HackStudio: Integate with C++ parser-based autocomplete
By default, C++ auto completion will still be performed by the
lexer-based logic.
However, the parser-based logic can be switched on via the menubar.
|
2021-01-27 21:10:57 +01:00 |
|
asynts
|
eea72b9b5c
|
Everywhere: Hook up remaining debug macros to Debug.h.
|
2021-01-25 09:47:36 +01:00 |
|
asynts
|
acdcf59a33
|
Everywhere: Remove unnecessary debug comments.
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-25 09:47:36 +01:00 |
|
Andreas Kling
|
4055b03291
|
DevTools: Move to Userland/DevTools/
|
2021-01-12 12:18:55 +01:00 |
|