1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 01:47:36 +00:00

JSSpecCompiler: Parse lists in xspec mode

This commit is contained in:
Dan Klishch 2024-01-20 22:48:05 -05:00 committed by Andrew Kaster
parent d14bb7e91e
commit e1a1f4ed1a
9 changed files with 102 additions and 0 deletions

View file

@ -146,4 +146,12 @@ String Variable::name() const
return MUST(String::from_utf8(m_name->m_name));
}
Vector<NodeSubtreePointer> List::subtrees()
{
Vector<NodeSubtreePointer> result;
for (auto& element : m_elements)
result.append({ &element });
return result;
}
}