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
commit 023968a489
Notes: sideshowbarker 2024-07-17 20:28:25 +09:00
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;
};