Packages

package nsc

Source
package.scala
Linear Supertypes
AnyRef, Any
Content Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. nsc
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Package Members

  1. package ast
  2. package backend
  3. package classpath
  4. package doc
  5. package fsc
  6. package interactive
  7. package interpreter
  8. package io
  9. package javac
  10. package plugins
  11. package profile
  12. package reporters
  13. package settings
  14. package symtab
  15. package transform
  16. package typechecker
  17. package util

Type Members

  1. abstract class AbstractScriptRunner extends ScriptRunner
  2. final class CloseableRegistry extends AnyRef

    Registry for resources to close when Global is closed

  3. trait CommonRunner extends AnyRef
  4. trait CompilationUnits extends AnyRef
  5. class CompilerCommand extends AnyRef

    A class representing command line info for scalac

  6. class ConsoleWriter extends Writer

    A Writer that writes onto the Scala Console.

  7. class DefaultScriptRunner extends AbstractScriptRunner
  8. abstract class Driver extends AnyRef
  9. trait EvalLoop extends AnyRef
  10. type FatalError = reflect.internal.FatalError
  11. class GenericRunnerCommand extends CompilerCommand

    A command for ScriptRunner

  12. class GenericRunnerSettings extends Settings
  13. class Global extends SymbolTable with Closeable with CompilationUnits with Plugins with PhaseAssembly with Trees with Printers with DocComments with Positions with Reporting with Parsing
  14. abstract class GlobalSymbolLoaders extends SymbolLoaders

    Symbol loaders implementation that wires dependencies using Global.

  15. class MainClass extends Driver with EvalLoop

    The main class for NSC, a compiler for the programming language Scala.

  16. type MissingRequirementError = reflect.internal.MissingRequirementError
  17. type Mode = reflect.internal.Mode
  18. class NewLinePrintWriter extends PrintWriter
  19. trait Parsing extends AnyRef

    Similar to Reporting: gather global functionality specific to parsing.

  20. type Phase = reflect.internal.Phase
  21. trait PhaseAssembly extends AnyRef

    Converts an unordered morass of components into an order that satisfies their mutual constraints.

    Converts an unordered morass of components into an order that satisfies their mutual constraints.

    See also

    SIP 00002. You have read SIP 00002?

  22. class PipelineMainClass extends AnyRef
  23. trait Reporting extends reflect.internal.Reporting

    Provides delegates to the reporter doing the actual work.

    Provides delegates to the reporter doing the actual work. PerRunReporting implements per-Run stateful info tracking and reporting

    TODO: make reporting configurable

  24. class ScalaDoc extends AnyRef

    The main class for scaladoc, a front-end for the Scala compiler that generates documentation from source files.

  25. class ScalaDocReporter extends ConsoleReporter

    The Scaladoc reporter adds summary messages to the ConsoleReporter

    The Scaladoc reporter adds summary messages to the ConsoleReporter

    Use the summaryX methods to add unique summarizing message to the end of the run.

  26. trait ScriptRunner extends AnyRef

    An object that runs Scala code in script files.

    An object that runs Scala code in script files.

    For example, here is a complete Scala script on Unix:

    #!/bin/sh
    exec scala "$0" "$@"
    !#
    Console.println("Hello, world!")
    args.toList foreach Console.println

    And here is a batch file example on Windows XP:

    ::#!
    @echo off
    call scala %0 %*
    goto :eof
    ::!#
    Console.println("Hello, world!")
    args.toList foreach Console.println
    To do

    It would be better if error output went to stderr instead of stdout...

  27. class Settings extends MutableSettings

    A compatibility stub.

  28. abstract class SubComponent extends AnyRef

    An nsc sub-component.

  29. type Variance = reflect.internal.Variance

Value Members

  1. def EXPRmode: reflect.internal.Mode
  2. val FatalError: reflect.internal.FatalError.type
  3. val MissingRequirementError: reflect.internal.MissingRequirementError.type
  4. val Mode: reflect.internal.Mode.type
  5. val NoPhase: reflect.internal.NoPhase.type
  6. val Variance: reflect.internal.Variance.type
  7. object ClassPathMemoryConsumptionTester

    Simple application to check out amount of memory used by chosen classpath representation.

    Simple application to check out amount of memory used by chosen classpath representation. It allows us to create many scalac-like calls based on specified parameters, where each main retains Global. And we need additional tool (e.g. profiler) to measure memory consumption itself.

  8. object GenericRunnerCommand
  9. object Global
  10. object Main extends MainClass
  11. object MainBench extends Driver with EvalLoop

    The main class for NSC, a compiler for the programming language Scala.

  12. object MainTokenMetric

    The main class for NSC, a compiler for the programming language Scala.

  13. object ObjectRunner extends CommonRunner

    An object that runs another object specified by name.

  14. object PickleExtractor
  15. object PipelineMain
  16. object Properties extends PropertiesTrait

    Loads compiler.properties from the jar archive file.

  17. object ScalaDoc extends ScalaDoc
  18. object ScriptCompileError extends ControlThrowable
  19. object ScriptRunner

Deprecated Value Members

  1. lazy val ListOfNil: List[List[Nothing]]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) Use scala.reflect.internal.util.ListOfNil

Inherited from AnyRef

Inherited from Any

Ungrouped