/tutorial/ace/aux_example_debug_a.e

http://github.com/tybor/Liberty · Specman e · 46 lines · 36 code · 3 blank · 7 comment · 0 complexity · 313155740bd15d99a3a5f0dcbb6511fe MD5 · raw file

  1. class AUX_EXAMPLE_DEBUG_A
  2. creation
  3. make
  4. feature {}
  5. make is
  6. do
  7. debug("trace 1")
  8. -- Executed (Default key)
  9. io.put_string(generating_type)
  10. io.put_string(": Debug 1%N")
  11. end
  12. debug("trace 2")
  13. -- Executed (Default key)
  14. io.put_string(generating_type)
  15. io.put_string(": Debug 2%N")
  16. end
  17. debug("trace 3")
  18. -- Not executed (Key not set for this class)
  19. io.put_string(generating_type)
  20. io.put_string(": Debug 3%N")
  21. end
  22. debug("trace 4")
  23. -- Not executed (Key not set for this class)
  24. io.put_string(generating_type)
  25. io.put_string(": Debug 4%N")
  26. end
  27. debug("trace 5")
  28. -- Not executed (Key not set for this cluster)
  29. io.put_string(generating_type)
  30. io.put_string(": Debug 5%N")
  31. end
  32. debug("trace 6")
  33. -- Not executed (Key not set for this cluster)
  34. io.put_string(generating_type)
  35. io.put_string(": Debug 6%N")
  36. end
  37. debug("trace 7")
  38. -- Not executed (Key not set for this class)
  39. io.put_string(generating_type)
  40. io.put_string(": Debug 7%N")
  41. end
  42. end
  43. end -- class AUX_EXAMPLE_DEBUG_A