decaf.AST

UndeclaredType

case class UndeclaredType(m: String, w: Position) extends ErrorType with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, ErrorType, Type, ASTNode, Positional, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. UndeclaredType
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. ErrorType
  7. Type
  8. ASTNode
  9. Positional
  10. AnyRef
  11. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new UndeclaredType(m: String, w: Position)

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[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. var color: Boolean

    Definition Classes
    ASTNode
  7. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  8. def equals(o: Any): Boolean

    Definition Classes
    Type → AnyRef → Any
  9. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  11. def getName: String

    Returns the name of this node type for printing.

    Returns the name of this node type for printing.

    By default, this is the class name of the node. For some nodes, such as ASTIdentifier, this should be something else; those nodes can override this method.

    returns

    a String containing the name of this node type for printing

    Definition Classes
    TypeASTNode
  12. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  13. val m: String

  14. val message: String

    Definition Classes
    ErrorType
  15. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  18. var parent: ASTNode

    Definition Classes
    ASTNode
  19. var pos: Position

    Definition Classes
    Positional
  20. val printLine: Boolean

    Definition Classes
    TypeASTNode
  21. def setPos(newpos: Position): UndeclaredType.this.type

    Definition Classes
    Positional
  22. var state: Option[ScopeNode]

    Definition Classes
    ASTNode
  23. def stringify(indentLevel: Int, label: Option[String] = None): String

    Returns a String representation of this node and it's leaves suitable for pretty-printing at the desired indentation level.

    Returns a String representation of this node and it's leaves suitable for pretty-printing at the desired indentation level.

    This is distinct from toString() because it takes arguments for the indentation level and the label, because to properly pretty-print the tree, we need information to be passed from other nodes. Therefore, this method is for internal use only; if you want a string representation of a node, call its' toString() method instead.

    indentLevel

    the level to indent the node's name

    label

    an optional label to attach to the node

    returns

    a String containing the pretty-print representation of the node

    Definition Classes
    ASTNode
  24. def stringifyChildren(indentLevel: Int): String

    Returns pretty-printable String representations of this node's children at the desired indent level, or epsilon if this node has no children.

    Returns pretty-printable String representations of this node's children at the desired indent level, or epsilon if this node has no children.

    This method is for internal use only; if you want a string representation of a node, call its' toString() method instead.

    indentLevel

    the level to indent the children of this node; this should be the indentlevel of this node + 1

    returns

    pretty-printable String representations of this node's children

    Definition Classes
    TypeASTNode
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  26. def toString(): String

    Returns a String representation of the tree with this node as the root node.

    Returns a String representation of the tree with this node as the root node.

    returns

    a String representation of the the with this node as the root node.

    Definition Classes
    ASTNode → AnyRef → Any
  27. val typeName: String

    Definition Classes
    Type
  28. def unpack(): List[Exception]

    Definition Classes
    ErrorType
  29. val w: Position

  30. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from ErrorType

Inherited from Type

Inherited from ASTNode

Inherited from Positional

Inherited from AnyRef

Inherited from Any

Ungrouped