1. init
  2. compress((Test t) -> begin
  3. print("h")
  4. end)
  5. abstract class Test
  6. abstract function do(Test test)
  7. function encodePositions(Test tp)
  8. print("e")
  9. doSeq((Test t) -> tp.do(tp))
  10. print("f")
  11. function compress(Test tp)
  12. print("a")
  13. doSeq((Test t) -> begin
  14. print("c")
  15. encodePositions((Test t) -> begin
  16. print("g")
  17. tp.do(t)
  18. end)
  19. print("d")
  20. end)
  21. print("b")
  22. function doSeq(Test t)
  23. nullTimer(() -> t.do(t))

goto line:
Compare with:
text copy window edit this code post new code