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

LibJS: Add spec comments to SymbolConstructor

This commit is contained in:
Linus Groh 2023-04-12 23:12:54 +02:00
parent 066133d97b
commit 0ae511edae
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);