Skip to content

IResolveContext

Current resolution context for tokens.

Methods

Name Description
register_post_processor Use this postprocessor after the entire token structure has been resolved.
resolve Resolve an inner object.

register_post_processor

def register_post_processor(
  post_processor: IPostProcessor
) -> None

Use this postprocessor after the entire token structure has been resolved.

post_processorRequired


resolve

def resolve(
  x: typing.Any
) -> typing.Any

Resolve an inner object.

xRequired

  • Type: typing.Any

Properties

Name Type Description
preparing bool True when we are still preparing, false if we're rendering the final output.
scope IConstruct The scope from which resolution has been initiated.

preparingRequired

preparing: bool
  • Type: bool

True when we are still preparing, false if we're rendering the final output.


scopeRequired

scope: IConstruct

The scope from which resolution has been initiated.