mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 07:07:23 +00:00
LibWeb: Spec-comment parse_a_list_of_declarations()
The `parse_as_list_of_declarations()` public method is unused and will not be used by any user code so has been removed.
This commit is contained in:
committed by
Andreas Kling
parent
2aac9f9258
commit
bcf4254331
@@ -1965,18 +1965,16 @@ Optional<StyleDeclarationRule> Parser::parse_a_declaration(TokenStream<T>& token
|
||||
return {};
|
||||
}
|
||||
|
||||
Vector<DeclarationOrAtRule> Parser::parse_as_list_of_declarations()
|
||||
{
|
||||
return parse_a_list_of_declarations(m_token_stream);
|
||||
}
|
||||
|
||||
// 5.3.8. Parse a list of declarations
|
||||
// https://www.w3.org/TR/css-syntax-3/#parse-list-of-declarations
|
||||
template<typename T>
|
||||
Vector<DeclarationOrAtRule> Parser::parse_a_list_of_declarations(TokenStream<T>& tokens)
|
||||
{
|
||||
// To parse a list of declarations from input:
|
||||
|
||||
// 1. Normalize input, and set input to the result.
|
||||
// Note: This is done when initializing the Parser.
|
||||
|
||||
// 2. Consume a list of declarations from input, and return the result.
|
||||
return consume_a_list_of_declarations(tokens);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user