c

scala.tools.nsc.doc.model

TreeEntity

abstract class TreeEntity extends AnyRef

A fragment of code.

Source
TreeEntity.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TreeEntity
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TreeEntity()

Abstract Value Members

  1. abstract def expression: String

    The human-readable representation of this abstract syntax tree.

  2. abstract def refEntity: SortedMap[Int, (Entity, Int)]

    Maps which parts of this syntax tree's name reference entities.

    Maps which parts of this syntax tree's name reference entities. The map is indexed by the position of the first character that reference some entity, and contains the entity and the position of the last referenced character. The referenced character ranges do not to overlap or nest. The map is sorted by position.

Concrete Value Members

  1. def toString(): String

    The human-readable representation of this abstract syntax tree.

    The human-readable representation of this abstract syntax tree.

    Definition Classes
    TreeEntity → AnyRef → Any