* Nodes
| 30 | * Nodes |
| 31 | */ |
| 32 | interface BaseNode { |
| 33 | metadata?: BaseNodeMetadata; |
| 34 | parentNode?: Node; |
| 35 | } |
| 36 | |
| 37 | interface BigIntLiteral extends SimpleLiteral { |
| 38 | bigint: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…