object Domain
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Domain
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- final case class PhpArg(expr: PhpExpr, parameterName: Option[String], byRef: Boolean, unpack: Boolean, attributes: PhpAttributes) extends PhpArgument with Product with Serializable
- sealed abstract class PhpArgument extends PhpNode
- final case class PhpAssignment(assignOp: String, target: PhpExpr, source: PhpExpr, isRefAssign: Boolean, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
- final case class PhpAttributes(lineNumber: Option[Integer], kind: Option[Int]) extends Product with Serializable
- final case class PhpBinaryOp(operator: String, left: PhpExpr, right: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
- final case class PhpBreakStmt(num: Option[Int], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
- final case class PhpCaseStmt(condition: Option[PhpExpr], stmts: List[PhpStmt], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
- final case class PhpCast(typ: String, expr: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
- final case class PhpContinueStmt(num: Option[Int], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
- final case class PhpDoStmt(cond: PhpExpr, stmts: List[PhpStmt], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
- final case class PhpEchoStmt(exprs: Seq[PhpExpr], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
- final case class PhpElseIfStmt(cond: PhpExpr, stmts: List[PhpStmt], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
- final case class PhpElseStmt(stmts: List[PhpStmt], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
- final case class PhpEncapsed(parts: Seq[PhpExpr], attributes: PhpAttributes) extends PhpScalar with Product with Serializable
- final case class PhpEncapsedPart(value: String, attributes: PhpAttributes) extends PhpScalar with Product with Serializable
- sealed abstract class PhpExpr extends PhpStmt
- final case class PhpFile(children: Seq[PhpStmt]) extends Product with Serializable
- final case class PhpFloat(value: String, attributes: PhpAttributes) extends PhpScalar with Product with Serializable
- final case class PhpFuncCall(target: PhpExpr, args: Seq[PhpArgument], attributes: PhpAttributes) extends PhpExpr with Product with Serializable
- final case class PhpIfStmt(cond: PhpExpr, stmts: List[PhpStmt], elseIfs: List[PhpElseIfStmt], elseStmt: Option[PhpElseStmt], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
- final case class PhpInt(value: String, attributes: PhpAttributes) extends PhpScalar with Product with Serializable
- final case class PhpIsset(vars: Seq[PhpExpr], attributes: PhpAttributes) extends PhpExpr with Product with Serializable
- 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
- final case class PhpNameExpr(name: String, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
- sealed abstract class PhpNode extends AnyRef
- final case class PhpParam(name: String, byRef: Boolean, isVariadic: Boolean, default: Option[PhpExpr], flags: Int, attributes: PhpAttributes) extends PhpNode with Product with Serializable
- final case class PhpPrint(expr: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
- sealed abstract class PhpScalar extends PhpExpr
- sealed abstract class PhpStmt extends PhpNode
- final case class PhpString(value: String, attributes: PhpAttributes) extends PhpScalar with Product with Serializable
- final case class PhpSwitchStmt(condition: PhpExpr, cases: List[PhpCaseStmt], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
- final case class PhpTernaryOp(condition: PhpExpr, thenExpr: Option[PhpExpr], elseExpr: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
- final case class PhpUnaryOp(operator: String, expr: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
- final case class PhpVariable(value: PhpExpr, attributes: PhpAttributes) extends PhpExpr with Product with Serializable
- final case class PhpVariadicPlaceholder(attributes: PhpAttributes) extends PhpArgument with Product with Serializable
- final case class PhpWhileStmt(cond: PhpExpr, stmts: List[PhpStmt], attributes: PhpAttributes) extends PhpStmt with Product with Serializable
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def fromJson(jsonInput: Value): PhpFile
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- object PhpArg extends Serializable
- object PhpAssignment extends Serializable
- object PhpAttributes extends Serializable
- object PhpBinaryOp extends Serializable
- object PhpBuiltins
- object PhpCast extends Serializable
- object PhpDomainTypeConstants
- object PhpEncapsedPart extends Serializable
- object PhpString extends Serializable
- object PhpUnaryOp extends Serializable
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated