( value: input )
| 30 | * |
| 31 | */ |
| 32 | export function match<const input, output = symbols.unset>( |
| 33 | value: input |
| 34 | ): Match<input, output> { |
| 35 | return new MatchExpression(value, unmatched) as any; |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * This class represents a match expression. It follows the |
no outgoing calls
searching dependent graphs…