object GenAST
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- GenAST
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- case class AssignExpr(lhs: String, rhs: Expr) extends Expr with Product with Serializable
- case class Block(statements: Seq[Definition], last: Expr) extends Expr with Product with Serializable
- case class Class(docs: Option[String] = None, mods: Seq[String] = Nil, name: String, typeParameters: Seq[TypeParameter] = Nil, constructors: Seq[Constructor] = Nil, extend: Seq[String] = Nil, members: Seq[Definition] = Nil, isTrait: Boolean = false) extends Definition with Product with Serializable
- case class Constructor(docs: Option[String] = None, mods: Seq[String] = Nil, parameters: Seq[Seq[Parameter]] = Nil, implicitParamters: Seq[Parameter] = Nil, rhs: Option[Expr] = None) extends Product with Serializable
- case class DefDef(docs: Option[String] = None, mods: Seq[String] = Nil, name: String, typeParameters: Seq[TypeParameter] = Nil, parameters: Seq[Seq[Parameter]] = Nil, implicitParameters: Seq[Parameter] = Nil, returnType: String, rhs: Option[Expr] = None) extends Definition with Product with Serializable
- sealed trait Definition extends AnyRef
- sealed trait Expr extends Definition
- case class FreeformDefinition(documentation: Option[String] = None, content: String) extends Definition with Product with Serializable
- case class FreeformExpr(code: String) extends Expr with Product with Serializable
- case class FunctionCall(function: String, typeArgs: Seq[String], argss: Seq[Seq[Expr]]) extends Expr with Product with Serializable
- case class Grouped(definitions: Definition*) extends Definition with Product with Serializable
- case class Imports(imports: Seq[String]) extends Definition with Product with Serializable
- case class Module(docs: Option[String] = None, mods: Seq[String] = Nil, name: String, extend: Seq[String] = Nil, members: Seq[Definition] = Nil) extends Definition with Product with Serializable
- case class NewExpr(extend: String, withs: Seq[String] = Nil, members: Seq[Definition] = Nil) extends Expr with Product with Serializable
- case class Parameter(docs: Option[String] = None, mods: Seq[String] = Nil, name: String, tpe: String, default: Option[Expr] = None) extends Product with Serializable
- case class ScalaFile(packageLoc: String, intelliJIgnoredInspections: Seq[String], disclaimer: String, definitions: Seq[Definition]) extends Product with Serializable
- case class TypeDef(docs: Option[String] = None, mods: Seq[String] = Nil, name: String, upperBound: Option[String] = None, lowerBound: Option[String] = None, rhs: Option[String] = None) extends Definition with Product with Serializable
- case class TypeParameter(docs: Option[String] = None, mods: Seq[String] = Nil, name: String, upperBound: Option[String] = None, lowerBound: Option[String] = None) extends Product with Serializable
- case class ValDef(docs: Option[String] = None, mods: Seq[String] = Nil, name: String, returnType: String, rhs: Option[Expr] = None) extends Definition 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()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): java.lang.Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- 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()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def printFile(file: ScalaFile): String
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- 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()