| 81 | } |
| 82 | |
| 83 | inline PhysicalEdge inlineStartEdge( |
| 84 | FlexDirection flexDirection, |
| 85 | Direction direction) { |
| 86 | if (isRow(flexDirection)) { |
| 87 | return direction == Direction::RTL ? PhysicalEdge::Right |
| 88 | : PhysicalEdge::Left; |
| 89 | } |
| 90 | |
| 91 | return PhysicalEdge::Top; |
| 92 | } |
| 93 | |
| 94 | inline PhysicalEdge inlineEndEdge( |
| 95 | FlexDirection flexDirection, |
no test coverage detected