()
| 974 | @Component({standalone: s, selector: 'app', template: ''}) |
| 975 | class CircularApp { |
| 976 | constructor() { |
| 977 | const circular: Record<string, unknown> = {}; |
| 978 | circular['self'] = circular; |
| 979 | coreInject(TransferState).set(makeStateKey<unknown>('key'), circular); |
| 980 | } |
| 981 | } |
| 982 | return CircularApp; |
| 983 | } |
nothing calls this directly
no test coverage detected