mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibWeb: Remove noisy debug messages from HTMLParser
This commit is contained in:
parent
ce01236000
commit
3040ca4311
Notes:
github-actions[bot]
2025-07-09 22:28:18 +00:00
Author: https://github.com/ADKaster
Commit: 3040ca4311
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5376
2 changed files with 0 additions and 9 deletions
|
@ -206,11 +206,6 @@ void HTMLParser::run(HTMLTokenizer::StopAtInsertionPoint stop_at_insertion_point
|
||||||
{
|
{
|
||||||
m_stop_parsing = false;
|
m_stop_parsing = false;
|
||||||
|
|
||||||
#if defined(LIBWEB_USE_SWIFT)
|
|
||||||
dbgln("Poking Swift Tokenizer");
|
|
||||||
m_speculative_parser->poke();
|
|
||||||
#endif
|
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
auto optional_token = m_tokenizer.next_token(stop_at_insertion_point);
|
auto optional_token = m_tokenizer.next_token(stop_at_insertion_point);
|
||||||
if (!optional_token.has_value())
|
if (!optional_token.has_value())
|
||||||
|
|
|
@ -57,8 +57,4 @@ public final class SpeculativeHTMLParser: HeapAllocatable {
|
||||||
public func visitEdges(_ visitor: GC.Cell.Visitor) {
|
public func visitEdges(_ visitor: GC.Cell.Visitor) {
|
||||||
visitor.visit(parser)
|
visitor.visit(parser)
|
||||||
}
|
}
|
||||||
|
|
||||||
public func poke() {
|
|
||||||
print("Hello from SpeculativeHTMLParser")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue