(int flags, long link, Object keys, Object values)
| 34 | final Object values; |
| 35 | |
| 36 | Node(int flags, long link, Object keys, Object values){ |
| 37 | this.flags = (byte)flags; |
| 38 | this.link = link; |
| 39 | this.keys = keys; |
| 40 | this.values = values; |
| 41 | |
| 42 | if(CC.ASSERT && isLastKeyDouble() && isDir()) |
| 43 | throw new AssertionError(); |
| 44 | |
| 45 | if(CC.ASSERT && isRightEdge() && (link!=0L)) |
| 46 | throw new AssertionError(); |
| 47 | |
| 48 | if(CC.ASSERT && !isRightEdge() && (link==0L)) |
| 49 | throw new AssertionError(); |
| 50 | |
| 51 | if(CC.ASSERT && isDir() && getChildren().length==0) |
| 52 | throw new AssertionError(); |
| 53 | } |
| 54 | |
| 55 | int intDir(){ |
| 56 | return (flags>>>3)&1; |
nothing calls this directly
no test coverage detected