(ast: A, context: Context)
| 3420 | |
| 3421 | /** @internal */ |
| 3422 | export function replaceContextLastLink<A extends AST>(ast: A, context: Context): A { |
| 3423 | return applyToLastLink((ast) => replaceContext(ast, context))(ast) |
| 3424 | } |
| 3425 | |
| 3426 | /** @internal */ |
| 3427 | export function applyToSelfOrLastLinkEncoding(f: (ast: AST) => AST) { |
nothing calls this directly
no test coverage detected