コード例 #1
0
ファイル: ErrorPrototype.cpp プロジェクト: 1833183060/wke
bool ErrorPrototype::getOwnPropertySlotVirtual(ExecState* exec, const Identifier& propertyName, PropertySlot &slot)
{
    return getOwnPropertySlot(this, exec, propertyName, slot);
}
コード例 #2
0
ファイル: runtime_array.cpp プロジェクト: 1833183060/wke
bool RuntimeArray::getOwnPropertySlotVirtual(ExecState *exec, unsigned index, PropertySlot& slot)
{
    return getOwnPropertySlot(this, exec, index, slot);
}
コード例 #3
0
ファイル: Arguments.cpp プロジェクト: sysrqb/chromium-src
bool Arguments::getOwnPropertySlotVirtual(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
{
    return getOwnPropertySlot(this, exec, propertyName, slot);
}
コード例 #4
0
ファイル: DebuggerActivation.cpp プロジェクト: 1833183060/wke
bool DebuggerActivation::getOwnPropertySlotVirtual(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
{
    return getOwnPropertySlot(this, exec, propertyName, slot);
}
コード例 #5
0
ファイル: JSObject.cpp プロジェクト: mikedougherty/webkit
bool JSObject::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)
{
    return getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot);
}
コード例 #6
0
ファイル: JSCell.cpp プロジェクト: sysrqb/chromium-src
bool JSCell::getOwnPropertySlotVirtual(ExecState* exec, const Identifier& identifier, PropertySlot& slot)
{
    return getOwnPropertySlot(this, exec, identifier, slot);
}
コード例 #7
0
ファイル: StringObject.cpp プロジェクト: 1833183060/wke
bool StringObject::getOwnPropertySlotVirtual(ExecState* exec, unsigned propertyName, PropertySlot& slot)
{
    return getOwnPropertySlot(this, exec, propertyName, slot);
}
コード例 #8
0
bool JSStaticScopeObject::getOwnPropertySlotVirtual(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
{
    return getOwnPropertySlot(this, exec, propertyName, slot);
}