JsUndefined.cs 903 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System;
  2. using Jint.Runtime;
  3. namespace Jint.Native
  4. {
  5. public sealed class JsUndefined : JsValue, IEquatable<JsUndefined>
  6. {
  7. internal JsUndefined() : base(Types.Undefined)
  8. {
  9. }
  10. public override object ToObject()
  11. {
  12. return null;
  13. }
  14. public override string ToString()
  15. {
  16. return "undefined";
  17. }
  18. public override bool Equals(JsValue obj)
  19. {
  20. if (ReferenceEquals(this, obj))
  21. {
  22. return true;
  23. }
  24. if (!(obj is JsUndefined s))
  25. {
  26. return false;
  27. }
  28. return Equals(s);
  29. }
  30. public bool Equals(JsUndefined other)
  31. {
  32. if (ReferenceEquals(null, other))
  33. {
  34. return false;
  35. }
  36. return true;
  37. }
  38. }
  39. }