mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-30 23:12:56 +00:00
JSSpecCompiler: Parse properties list clause title
This commit is contained in:
parent
ec16556fea
commit
3077e516a2
Notes:
sideshowbarker
2024-07-17 18:08:55 +09:00
Author: https://github.com/DanShaders
Commit: 3077e516a2
Pull-request: https://github.com/SerenityOS/serenity/pull/23647
Reviewed-by: https://github.com/ADKaster ✅
4 changed files with 68 additions and 1 deletions
|
@ -150,6 +150,14 @@ private:
|
|||
Algorithm m_algorithm;
|
||||
};
|
||||
|
||||
class ObjectProperties : public SpecificationClause {
|
||||
public:
|
||||
ObjectProperties(SpecificationClause&& clause)
|
||||
: SpecificationClause(move(clause))
|
||||
{
|
||||
}
|
||||
};
|
||||
|
||||
class Specification {
|
||||
public:
|
||||
static NonnullOwnPtr<Specification> create(SpecificationParsingContext& ctx, XML::Node const* element);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue