1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:07:34 +00:00

LibJS: Implement evaluation of im- and exports statements

This commit is contained in:
davidot 2022-01-18 19:07:13 +01:00 committed by Linus Groh
parent 779e677467
commit 023968a489
2 changed files with 88 additions and 6 deletions

View file

@ -1344,6 +1344,8 @@ public:
StringView name() const { return m_class_expression->name(); }
private:
friend ExportStatement;
NonnullRefPtr<ClassExpression> m_class_expression;
};