| 92 | } |
| 93 | |
| 94 | inline PhysicalEdge inlineEndEdge( |
| 95 | FlexDirection flexDirection, |
| 96 | Direction direction) { |
| 97 | if (isRow(flexDirection)) { |
| 98 | return direction == Direction::RTL ? PhysicalEdge::Left |
| 99 | : PhysicalEdge::Right; |
| 100 | } |
| 101 | |
| 102 | return PhysicalEdge::Bottom; |
| 103 | } |
| 104 | |
| 105 | inline Dimension dimension(FlexDirection flexDirection) { |
| 106 | switch (flexDirection) { |
no test coverage detected