JSSpecCompiler: Parse properties list clause title

This commit is contained in:
Dan Klishch 2024-03-08 23:06:32 -05:00 committed by Andrew Kaster
parent ec16556fea
commit 3077e516a2
Notes: sideshowbarker 2024-07-17 18:08:55 +09:00
4 changed files with 68 additions and 1 deletions

View file

@ -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);