nitc :: Prod :: is_span
Computed by parentize_tokens
parentize_tokens
# Is the production a part of a single line (without being a block) # Computed by `parentize_tokens` fun is_span: Bool do if first_token == null or last_token == null then return false return not is_block and location.line_start == location.line_end end