scala.util.parsing.ast.Binders

UnboundElement

class UnboundElement[N <: NameElement] extends NameElement

A variable that escaped its scope (i.e., a free variable) -- we don't deal very well with these yet

Inherits

  1. NameElement
  2. Element
  3. Positional
  4. AnyRef
  5. Any

Value Members

  1. def equals(that: Any): Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence

  2. def hashCode(): Int

    Returns a hash code value for the object

  3. def name: String

  4. var pos: Position

    The source position of this object, initially set to undefined

  5. def setPos(newpos: Position): Positional

    If current source position is undefined, update it with given position newpos'

  6. def toString(): String

    Returns a string representation of the object

Instance constructors

  1. new UnboundElement(el: N)

  2. new UnboundElement()