serenity/Userland/Libraries/LibJS
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
..
Heap Everywhere: Remove unnecessary debug comments. 2021-01-25 09:47:36 +01:00
Runtime Everywhere: Remove unnecessary debug comments. 2021-01-25 09:47:36 +01:00
Tests LibJS: Add some assertions and tests for TypedArray limitations 2021-01-24 19:08:44 +01:00
AST.cpp LibJS: Remove redundant exception check from ClassExpression::execute() 2021-01-24 00:40:22 +01:00
AST.h LibJS: Replace ASTNode::class_name() with RTTI 2021-01-17 14:36:53 +01:00
CMakeLists.txt
Console.cpp
Console.h
Forward.h LibJS: Add JS::NativeFunction to the forwarding header 2021-01-18 12:18:29 +01:00
Interpreter.cpp
Interpreter.h
Lexer.cpp Everywhere: Remove unnecessary debug comments. 2021-01-25 09:47:36 +01:00
Lexer.h
MarkupGenerator.cpp
MarkupGenerator.h
Parser.cpp
Parser.h
SourceRange.h
Token.cpp
Token.h