(int deltaFromLeftAncestor, int child)
| 1017 | } |
| 1018 | |
| 1019 | public static int indentcat(int deltaFromLeftAncestor, int child) { |
| 1020 | return CAT_INDENT_FROM_ANCESTOR_CHILD| (deltaFromLeftAncestor<<8) | (child << 16); |
| 1021 | } |
| 1022 | |
| 1023 | public static int[] unindentcat(int v) { |
| 1024 | int deltaFromLeftAncestor = (v>>8)&0xFF; |
no outgoing calls
no test coverage detected