* Evaluate a single prop value with schema awareness. * Delegates to shared evaluatePropCore with evaluate-tree-specific recursion callbacks.
( value: unknown, evalCtx: EvalContext, schemaCtx: SchemaContext, reactiveSchema?: unknown, )
| 65 | * Delegates to shared evaluatePropCore with evaluate-tree-specific recursion callbacks. |
| 66 | */ |
| 67 | function evaluatePropValue( |
| 68 | value: unknown, |
| 69 | evalCtx: EvalContext, |
| 70 | schemaCtx: SchemaContext, |
| 71 | reactiveSchema?: unknown, |
| 72 | ): unknown { |
| 73 | return evaluatePropCore(value, evalCtx.ctx, schemaCtx, reactiveSchema, { |
| 74 | recurseElement: (el) => evaluateElementProps(el, evalCtx), |
| 75 | recurse: (v, rs) => evaluatePropValue(v, evalCtx, schemaCtx, rs), |
| 76 | }); |
| 77 | } |
no test coverage detected