JSValue jsIDBIndexUnique(ExecState* exec, JSValue slotBase, const Identifier&) { JSIDBIndex* castedThis = static_cast<JSIDBIndex*>(asObject(slotBase)); UNUSED_PARAM(exec); IDBIndex* imp = static_cast<IDBIndex*>(castedThis->impl()); JSValue result = jsBoolean(imp->unique()); return result; }
static v8::Handle<v8::Value> uniqueAttrGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info) { INC_STATS("DOM.IDBIndex.unique._get"); IDBIndex* imp = V8IDBIndex::toNative(info.Holder()); return v8Boolean(imp->unique()); }