Help Angular by taking a 1 minute survey!Go to surveyHome

CompilerFactory

A factory for creating a Compiler

      
      abstract class CompilerFactory {
  abstract createCompiler(options?: CompilerOptions[]): Compiler
}
    

Subclasses

Methods

abstract createCompiler(options?: CompilerOptions[]): Compiler
      
      abstract createCompiler(options?: CompilerOptions[]): Compiler
    
Parameters
options CompilerOptions[]

Optional. Default is undefined.

Returns

Compiler