(props, _vForExp, children, loc)
| 105 | ) => FunctionExpression |
| 106 | |
| 107 | const buildClientSlotFn: SlotFnBuilder = (props, _vForExp, children, loc) => |
| 108 | createFunctionExpression( |
| 109 | props, |
| 110 | children, |
| 111 | false /* newline */, |
| 112 | true /* isSlot */, |
| 113 | children.length ? children[0].loc : loc, |
| 114 | ) |
| 115 | |
| 116 | // Instead of being a DirectiveTransform, v-slot processing is called during |
| 117 | // transformElement to build the slots object for a component. |
nothing calls this directly
no test coverage detected