/tutorial/ace/aux_example_debug/aux_example_debug_b.e

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

  1. class AUX_EXAMPLE_DEBUG_B
  2. create {ANY}
  3. make
  4. feature {}
  5. make
  6. do
  7. debug ("trace 1")
  8. -- Not executed (Default key overridden by per-class option)
  9. io.put_string(generating_type)
  10. io.put_string(": Debug 1%N")
  11. end
  12. debug ("trace 2")
  13. -- Not executed (Default key overridden by per-class option)
  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 (Per-cluster key overridden by per-class option)
  29. io.put_string(generating_type)
  30. io.put_string(": Debug 5%N")
  31. end
  32. debug ("trace 6")
  33. -- Not executed (Per-cluster key overridden by per-class option)
  34. io.put_string(generating_type)
  35. io.put_string(": Debug 6%N")
  36. end
  37. debug ("trace 7")
  38. -- Executed (Per-class option)
  39. io.put_string(generating_type)
  40. io.put_string(": Debug 7%N")
  41. end
  42. end
  43. end -- class AUX_EXAMPLE_DEBUG_B