LibJS: Add spec comments to SymbolConstructor

This commit is contained in:
Linus Groh 2023-04-12 23:12:54 +02:00
commit 0ae511edae
Notes: sideshowbarker 2024-07-17 02:29:45 +09:00
3 changed files with 35 additions and 10 deletions

View file

@ -24,6 +24,7 @@ public:
bool is_global() const { return m_is_global; }
ErrorOr<String> descriptive_string() const;
Optional<String> key() const;
private:
Symbol(Optional<String>, bool);