Source code

Revision control

Copy as Markdown

Other Tools

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: set ts=8 sts=2 et sw=2 tw=80:
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "builtin/ParseRecordObject.h"
#include "jsapi.h" // JS_ValueToId, JS_IdToValue
#include "builtin/Object.h"
#include "vm/PlainObject.h"
#include "vm/JSObject-inl.h" // NewBuiltinClassInstance
using namespace js;
const JSClass ParseRecordObject::class_ = {
"ParseRecordObject",
JSCLASS_HAS_RESERVED_SLOTS(SlotCount),
};
/* static */
ParseRecordObject* ParseRecordObject::create(JSContext* cx, const Value& val) {
Rooted<JSONParseNode*> parseNode(cx);
return ParseRecordObject::create(cx, parseNode, val);
}
/* static */
ParseRecordObject* ParseRecordObject::create(JSContext* cx,
Handle<JSONParseNode*> parseNode,
const Value& val) {
Rooted<ParseRecordObject*> obj(
cx, NewObjectWithGivenProto<ParseRecordObject>(cx, nullptr));
if (!obj) {
return nullptr;
}
if (parseNode) {
obj->initSlot(ParseNodeSlot, StringValue(parseNode));
}
obj->initSlot(ValueSlot, val);
return obj;
}
JS::PropertyKey ParseRecordObject::getKey(JSContext* cx) const {
Rooted<Value> slot(cx, getSlot(KeySlot));
Rooted<JS::PropertyKey> key(cx);
MOZ_ALWAYS_TRUE(JS_ValueToId(cx, slot, &key));
return key;
};
bool ParseRecordObject::setKey(JSContext* cx, const JS::PropertyKey& key) {
Rooted<Value> val(cx);
if (!JS_IdToValue(cx, key, &val)) {
return false;
}
setSlot(KeySlot, val);
return true;
}
void ParseRecordObject::setEntries(JSContext* cx, Handle<EntryMap*> entries) {
setSlot(EntriesSlot, ObjectValue(*entries));
}
void ParseRecordObject::getEntries(JSContext* cx,
MutableHandle<EntryMap*> entries) {
const Value& entryVal = getSlot(EntriesSlot);
if (entryVal.isObject()) {
entries.set(&entryVal.toObject());
}
}