Packages

package nsc

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. nsc
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait CommonRunner extends AnyRef
  2. trait CompilationUnits extends AnyRef
  3. class CompileSocket extends CompileOutputCommon

    This class manages sockets for the fsc offline compiler.

  4. class CompilerCommand extends AnyRef

    A class representing command line info for scalac

  5. class ConsoleWriter extends Writer

    A Writer that writes onto the Scala Console.

    A Writer that writes onto the Scala Console.

    Version

    1.0

  6. abstract class Driver extends AnyRef
  7. trait EvalLoop extends AnyRef
  8. type FatalError = reflect.internal.FatalError
  9. class GenericRunnerCommand extends CompilerCommand

    A command for ScriptRunner

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

    Symbol loaders implementation that wires dependencies using Global.

  13. trait HasCompileSocket extends AnyRef
  14. class MainClass extends Driver with EvalLoop

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

  15. class MainGenericRunner extends AnyRef

    An object that runs Scala code.

    An object that runs Scala code. It has three possible sources for the code to run: pre-compiled code, a script file, or interactive entry.

  16. type MissingRequirementError = reflect.internal.MissingRequirementError
  17. type Mode = reflect.internal.Mode
  18. class NewLinePrintWriter extends PrintWriter
  19. class OfflineCompilerCommand extends CompilerCommand

    A compiler command for the offline compiler.

  20. trait Parsing extends AnyRef

    Similar to Reporting: gather global functionality specific to parsing.

  21. type Phase = reflect.internal.Phase
  22. 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?

  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. class ScriptRunner extends HasCompileSocket

    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
    Version

    1.0, 15/05/2006

    To do

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

  27. class Settings extends MutableSettings

    A compatibility stub.

  28. class StandardCompileClient extends HasCompileSocket with CompileOutputCommon

    The client part of the fsc offline compiler.

    The client part of the fsc offline compiler. Instead of compiling things itself, it send requests to a CompileServer.

  29. class StandardCompileServer extends SocketServer

    The server part of the fsc offline compiler.

    The server part of the fsc offline compiler. It awaits compilation commands and executes them. It caches a compiler instance so that it can respond more quickly.

    Version

    1.0

  30. abstract class SubComponent extends AnyRef

    An nsc sub-component.

  31. type Variance = reflect.internal.Variance
  32. class Interpreter extends IMain

    A compatibility stub.

    A compatibility stub.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.9.0) Use a class in the scala.tools.nsc.interpreter package.

  33. class InterpreterLoop extends ILoop

    A compatibility stub.

    A compatibility stub.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.9.0) Use a class in the scala.tools.nsc.interpreter package.

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 CompileClient extends StandardCompileClient
  9. object CompileServer
  10. object CompileSocket extends CompileSocket
  11. object GenericRunnerCommand
  12. object Global
  13. object JarRunner extends CommonRunner
  14. object Main extends MainClass
  15. object MainBench extends Driver with EvalLoop

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

  16. object MainGenericRunner extends MainGenericRunner
  17. object MainTokenMetric

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

  18. object ObjectRunner extends CommonRunner

    An object that runs another object specified by name.

    An object that runs another object specified by name.

    Version

    1.1, 2007/7/13

  19. object Properties extends PropertiesTrait

    Loads compiler.properties from the jar archive file.

  20. object ScalaDoc extends ScalaDoc
  21. object ScriptRunner extends 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