Changed StaticCall to use static slot.

This commit is contained in:
beard%netscape.com 2000-06-29 04:23:56 +00:00
Родитель b202adfd39
Коммит 074f981eb4
2 изменённых файлов: 6 добавлений и 8 удалений

Просмотреть файл

@ -529,16 +529,15 @@ JSValue Context::interpret(ICodeModule* iCode, const JSValues& args)
case STATIC_CALL:
{
// FIXME: static call should use its static index.
StaticCall* call = static_cast<StaticCall*>(instruction);
JSClass* thisClass = op2(call);
const JSValue& value = (*thisClass)[thisClass->getStatic(*op3(call)).mIndex];
const JSValue& value = (*thisClass)[op3(call)];
// FIXME: throw runtime error if not a function value.
ASSERT(value.isFunction());
JSFunction *target = value.function;
if (target->isNative()) {
RegisterList &params = op4(call);
JSValues argv(params.size() + 1);
argv[0] = kNullValue;
JSValues argv(params.size() + 1, kNullValue);
JSValues::size_type i = 1;
for (RegisterList::const_iterator src = params.begin(), end = params.end();
src != end; ++src, ++i) {

Просмотреть файл

@ -529,16 +529,15 @@ JSValue Context::interpret(ICodeModule* iCode, const JSValues& args)
case STATIC_CALL:
{
// FIXME: static call should use its static index.
StaticCall* call = static_cast<StaticCall*>(instruction);
JSClass* thisClass = op2(call);
const JSValue& value = (*thisClass)[thisClass->getStatic(*op3(call)).mIndex];
const JSValue& value = (*thisClass)[op3(call)];
// FIXME: throw runtime error if not a function value.
ASSERT(value.isFunction());
JSFunction *target = value.function;
if (target->isNative()) {
RegisterList &params = op4(call);
JSValues argv(params.size() + 1);
argv[0] = kNullValue;
JSValues argv(params.size() + 1, kNullValue);
JSValues::size_type i = 1;
for (RegisterList::const_iterator src = params.begin(), end = params.end();
src != end; ++src, ++i) {