Packages

object Domain

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Domain
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class PhpArg(expr: PhpExpr, parameterName: Option[String], byRef: Boolean, unpack: Boolean, attributes: PhpAttributes) extends PhpArgument with Product with Serializable
  2. sealed abstract class PhpArgument extends PhpNode
  3. final case class PhpAssignment(assignOp: String, target: PhpExpr, source: PhpExpr, isRefAssign: Boolean, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  4. final case class PhpAttributes(lineNumber: Option[Integer], kind: Option[Int]) extends Product with Serializable
  5. final case class PhpBinaryOp(operator: String, left: PhpExpr, right: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  6. final case class PhpBreakStmt(num: Option[Int], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  7. final case class PhpCaseStmt(condition: Option[PhpExpr], stmts: List[PhpStmt], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  8. final case class PhpCast(typ: String, expr: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  9. final case class PhpContinueStmt(num: Option[Int], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  10. final case class PhpDoStmt(cond: PhpExpr, stmts: List[PhpStmt], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  11. final case class PhpEchoStmt(exprs: Seq[PhpExpr], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  12. final case class PhpElseIfStmt(cond: PhpExpr, stmts: List[PhpStmt], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  13. final case class PhpElseStmt(stmts: List[PhpStmt], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  14. final case class PhpEncapsed(parts: Seq[PhpExpr], attributes: PhpAttributes) extends PhpScalar with Product with Serializable
  15. final case class PhpEncapsedPart(value: String, attributes: PhpAttributes) extends PhpScalar with Product with Serializable
  16. sealed abstract class PhpExpr extends PhpStmt
  17. final case class PhpFile(children: Seq[PhpStmt]) extends Product with Serializable
  18. final case class PhpFloat(value: String, attributes: PhpAttributes) extends PhpScalar with Product with Serializable
  19. final case class PhpFuncCall(target: PhpExpr, args: Seq[PhpArgument], attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  20. final case class PhpIfStmt(cond: PhpExpr, stmts: List[PhpStmt], elseIfs: List[PhpElseIfStmt], elseStmt: Option[PhpElseStmt], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  21. final case class PhpInt(value: String, attributes: PhpAttributes) extends PhpScalar with Product with Serializable
  22. final case class PhpIsset(vars: Seq[PhpExpr], attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  23. final case class PhpMethodDecl(name: String, params: Seq[PhpParam], stmts: Seq[PhpStmt], returnByRef: Boolean, namespacedName: Option[String], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  24. final case class PhpNameExpr(name: String, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  25. sealed abstract class PhpNode extends AnyRef
  26. final case class PhpParam(name: String, byRef: Boolean, isVariadic: Boolean, default: Option[PhpExpr], flags: Int, attributes: PhpAttributes) extends PhpNode with Product with Serializable
  27. final case class PhpPrint(expr: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  28. sealed abstract class PhpScalar extends PhpExpr
  29. sealed abstract class PhpStmt extends PhpNode
  30. final case class PhpString(value: String, attributes: PhpAttributes) extends PhpScalar with Product with Serializable
  31. final case class PhpSwitchStmt(condition: PhpExpr, cases: List[PhpCaseStmt], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
  32. final case class PhpTernaryOp(condition: PhpExpr, thenExpr: Option[PhpExpr], elseExpr: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  33. final case class PhpUnaryOp(operator: String, expr: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  34. final case class PhpVariable(value: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
  35. final case class PhpVariadicPlaceholder(attributes: PhpAttributes) extends PhpArgument with Product with Serializable
  36. final case class PhpWhileStmt(cond: PhpExpr, stmts: List[PhpStmt], attributes: PhpAttributes) extends PhpStmt with Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def fromJson(jsonInput: Value): PhpFile
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  18. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  19. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. object PhpArg extends Serializable
  21. object PhpAssignment extends Serializable
  22. object PhpAttributes extends Serializable
  23. object PhpBinaryOp extends Serializable
  24. object PhpBuiltins
  25. object PhpCast extends Serializable
  26. object PhpDomainTypeConstants
  27. object PhpEncapsedPart extends Serializable
  28. object PhpString extends Serializable
  29. object PhpUnaryOp extends Serializable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped