* Returns the shared singleton instance of a default [[AbiCoder]]. * * On the first call, the instance is created internally.
()
| 125 | * On the first call, the instance is created internally. |
| 126 | */ |
| 127 | static defaultAbiCoder() { |
| 128 | if (defaultCoder == null) { |
| 129 | defaultCoder = new AbiCoder(); |
| 130 | } |
| 131 | return defaultCoder; |
| 132 | } |
| 133 | } |
no outgoing calls
no test coverage detected