(primitiveType: FlowStaticPrimitiveType)
| 152 | return ret; |
| 153 | }, |
| 154 | newStaticPrimitiveNode(primitiveType: FlowStaticPrimitiveType): SDNode { |
| 155 | return { |
| 156 | widget: NODE_PRIMITIVE, |
| 157 | fields: {}, |
| 158 | inputs: [], |
| 159 | outputs: [{ |
| 160 | name: primitiveType, |
| 161 | type: primitiveType, |
| 162 | links: [], |
| 163 | slot_index: 0 |
| 164 | }], |
| 165 | } |
| 166 | }, |
| 167 | newRerouteNode(): SDNode { |
| 168 | return { |
| 169 | widget: 'Reroute', |
nothing calls this directly
no outgoing calls
no test coverage detected