(fiber: Fiber)
| 127 | } |
| 128 | |
| 129 | function popContext(fiber: Fiber): void { |
| 130 | if (disableLegacyContext) { |
| 131 | return; |
| 132 | } else { |
| 133 | pop(didPerformWorkStackCursor, fiber); |
| 134 | pop(contextStackCursor, fiber); |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | function popTopLevelContextObject(fiber: Fiber): void { |
| 139 | if (disableLegacyContext) { |