Currently, the table shows the transition numbers to the left, and also inside the table itself. The part inside the table should be replaced with a summary of the transition(s).
The summary should show the first roughly 20 characters of the first and last line of source code, of the first and last transition in the given range, separated by "...":
From an e-mail, an example:
In the example "oldclassic", this is 0–2.
Also remember the first non-comment line, in oldclassic:
Event new_event1 = new Event();
Store that string, after trimming multiple spaces, and truncating it to about 20 characters using "..." at the end if it's too long:
Event new_event1 = ...
Same for the last line of the last transition. We should ignore lines having no alpha-numeric characters or which are likely comments (starting with / or ), so in the example, this would be:
task2.start()
Original report by Artho Cyrille (Bitbucket: 557058:d037361a-d6a1-4cae-80e0-7b1940bbc779, GitHub: cyrille-artho).
Currently, the table shows the transition numbers to the left, and also inside the table itself. The part inside the table should be replaced with a summary of the transition(s). The summary should show the first roughly 20 characters of the first and last line of source code, of the first and last transition in the given range, separated by "...":
From an e-mail, an example: