* @_ignore:
(fragment: ErrorFragment, selector: string, args: Result)
| 154 | * @_ignore: |
| 155 | */ |
| 156 | constructor(fragment: ErrorFragment, selector: string, args: Result) { |
| 157 | const name = fragment.name, signature = fragment.format(); |
| 158 | defineProperties<ErrorDescription>(this, { |
| 159 | fragment, name, args, signature, selector |
| 160 | }); |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | /** |
nothing calls this directly
no test coverage detected