* @return collection of strings, not null
*/
public List<String> getPrecedingComments() {
final LinkedList<String> results = new LinkedList<String>();
if (firstToken != null) {
Token special = firstToken.specialToken;
while (special != null) {
final String comment = parseComment(special);
results.addFirst(comment);
special = special.specialToken;
}