blob: 0a57febc84d96121c497165eb1fcb5ad5399ef9c [file] [log] [blame]
/*
* Copyright (C) 2003-2006, 2008 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#include "config.h"
#include "JSImmediate.h"
#include "BooleanObject.h"
#include "JSNotAnObject.h"
#include "NumberObject.h"
namespace KJS {
JSObject* JSImmediate::toObject(const JSValue* v, ExecState* exec)
{
ASSERT(isImmediate(v));
if (isNumber(v))
return constructNumberFromImmediateNumber(exec, const_cast<JSValue*>(v));
if (isBoolean(v))
return constructBooleanFromImmediateBoolean(exec, const_cast<JSValue*>(v));
if (v == jsNull())
return new (exec) JSNotAnObject(throwError(exec, TypeError, "Null value"));
ASSERT(v == jsUndefined());
return new (exec) JSNotAnObject(throwError(exec, TypeError, "Undefined value"));
}
JSObject* JSImmediate::prototype(const JSValue* v, ExecState* exec)
{
ASSERT(isImmediate(v));
if (isNumber(v))
return exec->lexicalGlobalObject()->numberPrototype();
if (isBoolean(v))
return exec->lexicalGlobalObject()->booleanPrototype();
if (v == jsNull())
return new (exec) JSNotAnObject(throwError(exec, TypeError, "Null value"));
ASSERT(v == jsUndefined());
return new (exec) JSNotAnObject(throwError(exec, TypeError, "Undefined value"));
}
UString JSImmediate::toString(const JSValue* v)
{
ASSERT(isImmediate(v));
if (isNumber(v))
return UString::from(getTruncatedInt32(v));
if (v == jsBoolean(false))
return "false";
if (v == jsBoolean(true))
return "true";
if (v == jsNull())
return "null";
ASSERT(v == jsUndefined());
return "undefined";
}
} // namespace KJS