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
$ rhino
Rhino 1.7.6 2015 04 15
js> try { somethingundefined(); } catch (e) { JSON.stringify(e); }
js: Java class "[B" has no public instance field or method named "toJSON".
With the fix, the proper behavior is this:
Rhino 1.7.7 2015 06 17
js> try { somethingundefined(); } catch (e) { JSON.stringify(e); }
{"message":""somethingundefined" is not defined.","fileName":"","lineNumber":2}
The text was updated successfully, but these errors were encountered:
This is currently the bug:
$ rhino
Rhino 1.7.6 2015 04 15
js> try { somethingundefined(); } catch (e) { JSON.stringify(e); }
js: Java class "[B" has no public instance field or method named "toJSON".
With the fix, the proper behavior is this:
Rhino 1.7.7 2015 06 17
js> try { somethingundefined(); } catch (e) { JSON.stringify(e); }
{"message":""somethingundefined" is not defined.","fileName":"","lineNumber":2}
The text was updated successfully, but these errors were encountered: