Guest User

Untitled

a guest
Jun 20th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1. [[syntax trees at end of cleanup]]// Scala source: app.scala
  2. package <empty> {
  3. @serializable final case class PingObject extends java.lang.Object with ScalaObject with Product {
  4. def productIterator(): Iterator = scala.Product$class.productIterator(PingObject.this);
  5. @deprecated("use productIterator instead") def productElements(): Iterator = scala.Product$class.productElements(PingObject.this);
  6. final override def toString(): java.lang.String = "PingObject";
  7. override def productPrefix(): java.lang.String = "PingObject";
  8. override def productArity(): Int = 0;
  9. override def productElement(x$1: Int): java.lang.Object = {
  10. <synthetic> val temp1: Int = x$1;
  11. {
  12. throw new java.lang.IndexOutOfBoundsException(scala.Int.box(x$1).toString())
  13. }
  14. };
  15. override def canEqual(x$1: java.lang.Object): Boolean = x$1.$isInstanceOf[object PingObject]();
  16. protected def readResolve(): java.lang.Object = PingObject;
  17. def this(): object PingObject = {
  18. PingObject.super.this();
  19. scala.Product$class./*Product$class*/$init$(PingObject.this);
  20. ()
  21. }
  22. };
  23. @serializable case class PingClass extends java.lang.Object with ScalaObject with Product {
  24. def productIterator(): Iterator = scala.Product$class.productIterator(PingClass.this);
  25. @deprecated("use productIterator instead") def productElements(): Iterator = scala.Product$class.productElements(PingClass.this);
  26. override def hashCode(): Int = ScalaRunTime.this._hashCode(PingClass.this);
  27. override def toString(): java.lang.String = ScalaRunTime.this._toString(PingClass.this);
  28. override def equals(x$1: java.lang.Object): Boolean = PingClass.this.eq(x$1).||({
  29. <synthetic> val temp2: java.lang.Object = x$1;
  30. if (temp2.$isInstanceOf[PingClass]())
  31. {
  32. x$1.$asInstanceOf[PingClass]().canEqual(PingClass.this)
  33. }
  34. else
  35. {
  36. false
  37. }
  38. });
  39. override def productPrefix(): java.lang.String = "PingClass";
  40. override def productArity(): Int = 0;
  41. override def productElement(x$1: Int): java.lang.Object = {
  42. <synthetic> val temp4: Int = x$1;
  43. {
  44. throw new java.lang.IndexOutOfBoundsException(scala.Int.box(x$1).toString())
  45. }
  46. };
  47. override def canEqual(x$1: java.lang.Object): Boolean = x$1.$isInstanceOf[PingClass]();
  48. def this(): PingClass = {
  49. PingClass.super.this();
  50. scala.Product$class./*Product$class*/$init$(PingClass.this);
  51. ()
  52. }
  53. };
  54. final <synthetic> class PingClass extends scala.runtime.AbstractFunction0 with ScalaObject {
  55. case <synthetic> def unapply(x$0: PingClass): Boolean = if (x$0.==(null))
  56. false
  57. else
  58. true;
  59. case <synthetic> def apply(): PingClass = new PingClass();
  60. case <synthetic> <bridge> def apply(): java.lang.Object = PingClass.this.apply();
  61. def this(): object PingClass = {
  62. PingClass.super.this();
  63. ()
  64. }
  65. }
  66. }
Add Comment
Please, Sign In to add comment