}
if (t.type === TokenType.Newline) {
// Check if the next thing after this newline is blank or content
const afterNewline = this.currentToken();
if (afterNewline.type === TokenType.Newline) {
// Another newline means an empty line
emptyLineCount++;
continue;
}
// Check what follows the indent
const afterIndent = this.peek(1);