()
| 333 | } |
| 334 | |
| 335 | public static void popThreadBindings(){ |
| 336 | Frame f = dvals.get().prev; |
| 337 | if (f == null) { |
| 338 | throw new IllegalStateException("Pop without matching push"); |
| 339 | } else if (f == Frame.TOP) { |
| 340 | dvals.remove(); |
| 341 | } else { |
| 342 | dvals.set(f); |
| 343 | } |
| 344 | } |
| 345 | |
| 346 | public static Associative getThreadBindings(){ |
| 347 | Frame f = dvals.get(); |
no test coverage detected