summaryrefslogtreecommitdiffstats
path: root/js/src/vm/NativeObject.h
diff options
context:
space:
mode:
authorGaming4JC <g4jc@hyperbola.info>2019-06-08 23:29:58 -0400
committerGaming4JC <g4jc@hyperbola.info>2019-07-18 22:38:26 -0400
commitcaf39feeeb457ffb143110826a0220211c00afb6 (patch)
tree3734dd19f40a0450c4dca46e8dd8de01ff1955d0 /js/src/vm/NativeObject.h
parent3a5176f4b25a2b90cefe14eb2c2de57113dc21ac (diff)
downloadUXP-caf39feeeb457ffb143110826a0220211c00afb6.tar
UXP-caf39feeeb457ffb143110826a0220211c00afb6.tar.gz
UXP-caf39feeeb457ffb143110826a0220211c00afb6.tar.lz
UXP-caf39feeeb457ffb143110826a0220211c00afb6.tar.xz
UXP-caf39feeeb457ffb143110826a0220211c00afb6.zip
1320408 - Part 15: Change NativeObject::addDataProperty to static method.
Diffstat (limited to 'js/src/vm/NativeObject.h')
-rw-r--r--js/src/vm/NativeObject.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/src/vm/NativeObject.h b/js/src/vm/NativeObject.h
index 832a701dd..7b240db34 100644
--- a/js/src/vm/NativeObject.h
+++ b/js/src/vm/NativeObject.h
@@ -741,10 +741,10 @@ class NativeObject : public ShapedObject
bool allowDictionary = true);
/* Add a data property whose id is not yet in this scope. */
- Shape* addDataProperty(ExclusiveContext* cx,
- jsid id_, uint32_t slot, unsigned attrs);
- Shape* addDataProperty(ExclusiveContext* cx, HandlePropertyName name,
- uint32_t slot, unsigned attrs);
+ static Shape* addDataProperty(ExclusiveContext* cx, HandleNativeObject obj,
+ jsid id_, uint32_t slot, unsigned attrs);
+ static Shape* addDataProperty(ExclusiveContext* cx, HandleNativeObject obj,
+ HandlePropertyName name, uint32_t slot, unsigned attrs);
/* Add or overwrite a property for id in this scope. */
static Shape*