(side LSide, address string)
| 127 | } |
| 128 | |
| 129 | func (ln *listNode) setPrev(side LSide, address string) { |
| 130 | switch side { |
| 131 | case Left: |
| 132 | ln.left = address |
| 133 | case Right: |
| 134 | ln.right = address |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | func (ln listNode) updateBothSidesAction(newLeft string, newRight string, c Client) dynamodb.TransactWriteItem { |
| 139 | updater := newExpresionBuilder() |
no outgoing calls
no test coverage detected