[gjs/wip/ptomato/mozjs31: 7/9] js: Remove deprecated JS_IsConstructing()
- From: Philip Chimento <pchimento src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gjs/wip/ptomato/mozjs31: 7/9] js: Remove deprecated JS_IsConstructing()
- Date: Thu, 20 Oct 2016 07:09:54 +0000 (UTC)
commit e8d8f3f63e92b41c51acd4275ab1c8136a9a75b2
Author: Philip Chimento <philip chimento gmail com>
Date: Sat Sep 17 20:08:37 2016 -0700
js: Remove deprecated JS_IsConstructing()
In mozjs31 this is replaced with JS::CallArgs::isConstructing().
gjs/jsapi-util.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gjs/jsapi-util.h b/gjs/jsapi-util.h
index 40043a0..e835299 100644
--- a/gjs/jsapi-util.h
+++ b/gjs/jsapi-util.h
@@ -260,7 +260,7 @@ gjs_##name##_constructor(JSContext *context, \
*/
#define GJS_NATIVE_CONSTRUCTOR_PRELUDE(name) \
{ \
- if (!JS_IsConstructing(context, vp)) { \
+ if (!argv.isConstructing()) { \
gjs_throw_constructor_error(context); \
return false; \
} \
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]