You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Symbol::Description() normally returns a string, but when the symbol
does not have a description, it returns undefined.
The String::Utf8Value constructor requires that a v8::Context is active
for the ToString operation it executes. ToString is a no-op for strings
(hence no crash) but not for undefined.
Add a Context::Scope to fix that.
Fixes: rubyjs#318
Symbol::Description() normally returns a string, but when the symbol
does not have a description, it returns undefined.
The String::Utf8Value constructor requires that a v8::Context is active
for the ToString operation it executes. ToString is a no-op for strings
(hence no crash) but not for undefined.
Add a Context::Scope to fix that.
Fixes: #318
The text was updated successfully, but these errors were encountered: