()
| 113 | toObject: toObject, |
| 114 | |
| 115 | toOrderedMap() { |
| 116 | // Use Late Binding here to solve the circular dependency. |
| 117 | return OrderedMap(this.toKeyedSeq()); |
| 118 | }, |
| 119 | |
| 120 | toOrderedSet() { |
| 121 | // Use Late Binding here to solve the circular dependency. |
nothing calls this directly
no test coverage detected