/src/3rdparty/webkit/Source/JavaScriptCore/runtime/BooleanPrototype.cpp

https://bitbucket.org/ultra_iter/qt-vtl · C++ · 85 lines · 42 code · 20 blank · 23 comment · 10 complexity · bcc842ed67a7c20e93a773d8f80c7a2d MD5 · raw file

  1. /*
  2. * Copyright (C) 1999-2000 Harri Porten (porten@kde.org)
  3. * Copyright (C) 2003, 2008 Apple Inc. All rights reserved.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  18. *
  19. */
  20. #include "config.h"
  21. #include "BooleanPrototype.h"
  22. #include "Error.h"
  23. #include "ExceptionHelpers.h"
  24. #include "JSFunction.h"
  25. #include "JSString.h"
  26. #include "ObjectPrototype.h"
  27. namespace JSC {
  28. ASSERT_CLASS_FITS_IN_CELL(BooleanPrototype);
  29. // Functions
  30. static EncodedJSValue JSC_HOST_CALL booleanProtoFuncToString(ExecState*);
  31. static EncodedJSValue JSC_HOST_CALL booleanProtoFuncValueOf(ExecState*);
  32. // ECMA 15.6.4
  33. BooleanPrototype::BooleanPrototype(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, Structure* functionStructure)
  34. : BooleanObject(exec->globalData(), structure)
  35. {
  36. setInternalValue(exec->globalData(), jsBoolean(false));
  37. putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, globalObject, functionStructure, 0, exec->propertyNames().toString, booleanProtoFuncToString), DontEnum);
  38. putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, globalObject, functionStructure, 0, exec->propertyNames().valueOf, booleanProtoFuncValueOf), DontEnum);
  39. }
  40. // ------------------------------ Functions --------------------------
  41. // ECMA 15.6.4.2 + 15.6.4.3
  42. EncodedJSValue JSC_HOST_CALL booleanProtoFuncToString(ExecState* exec)
  43. {
  44. JSValue thisValue = exec->hostThisValue();
  45. if (thisValue == jsBoolean(false))
  46. return JSValue::encode(jsNontrivialString(exec, "false"));
  47. if (thisValue == jsBoolean(true))
  48. return JSValue::encode(jsNontrivialString(exec, "true"));
  49. if (!thisValue.inherits(&BooleanObject::s_info))
  50. return throwVMTypeError(exec);
  51. if (asBooleanObject(thisValue)->internalValue() == jsBoolean(false))
  52. return JSValue::encode(jsNontrivialString(exec, "false"));
  53. ASSERT(asBooleanObject(thisValue)->internalValue() == jsBoolean(true));
  54. return JSValue::encode(jsNontrivialString(exec, "true"));
  55. }
  56. EncodedJSValue JSC_HOST_CALL booleanProtoFuncValueOf(ExecState* exec)
  57. {
  58. JSValue thisValue = exec->hostThisValue();
  59. if (thisValue.isBoolean())
  60. return JSValue::encode(thisValue);
  61. if (!thisValue.inherits(&BooleanObject::s_info))
  62. return throwVMTypeError(exec);
  63. return JSValue::encode(asBooleanObject(thisValue)->internalValue());
  64. }
  65. } // namespace JSC