MCPcopy Create free account
hub / github.com/Effect-TS/effect / recur

Method recur

packages/effect/src/SchemaAST.ts:3088–3096  ·  view source on GitHub ↗

@internal

(recur: (ast: AST) => AST)

Source from the content-addressed store, hash-verified

3086 }
3087 /** @internal */
3088 recur(recur: (ast: AST) => AST) {
3089 return new Suspend(
3090 () => recur(this.thunk()),
3091 this.annotations,
3092 undefined,
3093 undefined,
3094 this.context
3095 )
3096 }
3097 /** @internal */
3098 getExpected(getExpected: (ast: AST) => string): string {
3099 return getExpected(this.thunk())

Callers

nothing calls this directly

Calls 1

recurFunction · 0.70

Tested by

no test coverage detected