We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 678555a commit c56bc49Copy full SHA for c56bc49
Userland/Libraries/LibGUI/GML/Parser.cpp
@@ -27,10 +27,8 @@ static ErrorOr<NonnullRefPtr<Object>> parse_gml_object(Queue<Token>& tokens)
27
return tokens.head().m_type;
28
};
29
30
- while (peek() == Token::Type::Comment) {
31
- dbgln("found comment {}", tokens.head().m_view);
+ while (peek() == Token::Type::Comment)
32
TRY(object->add_property_child(TRY(Node::from_token<Comment>(tokens.dequeue()))));
33
- }
34
35
if (peek() != Token::Type::ClassMarker)
36
return Error::from_string_literal("Expected class marker"sv);
0 commit comments