scala.tools.nsc.interpreter

Imports

trait Imports extends AnyRef

Self Type
IMain
Source
Imports.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Imports
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Type Members

  1. case class ComputedImports (prepend: String, append: String, access: String) extends Product with Serializable

    Compute imports that allow definitions from previous requests to be visible in a new request.

Value Members

  1. def != (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def == (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  5. def == (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  6. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  7. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  9. def equals (arg0: Any): Boolean

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

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

    Attributes
    final
    Definition Classes
    AnyRef → Any
  12. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  13. def implicitSymbols : List[Symbol]

  14. def implicitSymbolsBySource : List[(Symbol, List[Symbol])]

  15. def importedSymbols : List[Symbol]

  16. def importedSymbolsBySource : List[(Symbol, List[Symbol])]

    Tuples of (source, imported symbols) in the order they were imported.

  17. def importedTermNamed (name: String): Option[TermSymbol]

  18. def importedTermSymbols : List[TermSymbol]

  19. def importedTerms : List[TermName]

  20. def importedTypeSymbols : List[TypeSymbol]

  21. def importedTypes : List[TypeName]

  22. def importsCode (wanted: Set[Name]): ComputedImports

    Attributes
    protected
  23. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  24. def isNoImports : T

  25. def isNoPredef : Boolean

  26. def languageSymbols : List[Symbol]

  27. def languageWildcardHandlers : List[ImportHandler]

  28. def languageWildcardSyms : List[Symbol]

    Symbols whose contents are language-defined to be imported.

  29. def languageWildcards : List[Type]

  30. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  31. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  32. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  33. def sessionImportedSymbols : List[Symbol]

  34. def sessionWildcards : List[Type]

    Types which have been wildcard imported, such as: val x = "abc" ; import x.

    Types which have been wildcard imported, such as: val x = "abc" ; import x._ // type java.lang.String import java.lang.String._ // object java.lang.String

    Used by tab completion.

    XXX right now this gets import x._ and import java.lang.String._, but doesn't figure out import String._. There's a lot of ad hoc scope twiddling which should be swept away in favor of digging into the compiler scopes.

  35. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  36. def toString (): String

    Definition Classes
    AnyRef → Any
  37. def wait (): Unit

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  40. def wildcardTypes : List[Type]

Inherited from AnyRef

Inherited from Any