Class Context

The context describes the current state the converter is in.

Constructors

Properties

converter: Converter

The converter instance that has created the context.

convertingClassOrInterface: boolean = false
convertingTypeNode: boolean = false
programs: readonly Program[]

All programs being converted.

The project that is currently processed.

The scope or parent reflection that is currently processed.

shouldBeStatic: boolean = false

Accessors

  • get checker(): TypeChecker
  • The TypeChecker instance returned by the TypeScript compiler.

    Returns TypeChecker

  • get program(): Program
  • The program currently being converted. Accessing this property will throw if a source file is not currently being converted.

    Returns Program

Methods

  • Parameters

    • declaration:
          | JSDocTemplateTag
          | JSDocPropertyLikeTag
          | JSDocTypedefTag
          | JSDocCallbackTag
          | JSDocEnumTag

    Returns undefined | Models.Comment

  • Parameters

    • node: Node

    Returns undefined | Symbol

  • Return the type declaration of the given node.

    Parameters

    • node: Node

      The TypeScript node whose type should be resolved.

    Returns undefined | Type

    The type declaration of the given node.

  • Parameters

    • reflection: Models.Reflection
    • symbol: undefined | Symbol
    • exportSymbol: undefined | Symbol

    Returns void

  • Register a newly generated reflection. All created reflections should be passed to this method to ensure that the project helper functions work correctly.

    Parameters

    • reflection: Models.Reflection

      The reflection that should be registered.

    • symbol: undefined | Symbol

      The symbol the given reflection was resolved from.

    Returns void

  • Internal

    Parameters

    • program: undefined | Program

    Returns void