API ReferenceInterfaces
Pass
Defined in: packages/core/src/passes/registry.ts:13
A named transform in the transpile pipeline. Passes declare the passes they
must run after via runsAfter; the registry topologically sorts them so
ordering is data, not a hand-maintained array.
Properties
apply
apply: PassFn;Defined in: packages/core/src/passes/registry.ts:18
name
name: string;Defined in: packages/core/src/passes/registry.ts:15
Unique identifier, also used to reference this pass in runsAfter.
runsAfter?
optional runsAfter?: string[];Defined in: packages/core/src/passes/registry.ts:17
Names of passes that must run before this one. Unknown names are ignored.