diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-03-17 16:58:26 +0100 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-03-17 16:58:26 +0100 |
commit | 566f1ff8e70f67181fc933a016011f062749170f (patch) | |
tree | 5b3f907bfe64bf0c24f9817839ff468b18748b6d /js/src/vm/ErrorObject.h | |
parent | 0a815a6f1117caa829937b5ad8e306481a9f896d (diff) | |
download | uxp-566f1ff8e70f67181fc933a016011f062749170f.tar.gz |
Handle the now ordinary error prototype object in stack
Diffstat (limited to 'js/src/vm/ErrorObject.h')
-rw-r--r-- | js/src/vm/ErrorObject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js/src/vm/ErrorObject.h b/js/src/vm/ErrorObject.h index cfd804e2ed..0c2d00610a 100644 --- a/js/src/vm/ErrorObject.h +++ b/js/src/vm/ErrorObject.h @@ -106,6 +106,7 @@ class ErrorObject : public NativeObject // Getter and setter for the Error.prototype.stack accessor. static bool getStack(JSContext* cx, unsigned argc, Value* vp); + static bool getStack_impl(JSContext* cx, const CallArgs& args); static bool setStack(JSContext* cx, unsigned argc, Value* vp); static bool setStack_impl(JSContext* cx, const CallArgs& args); }; |