nitc :: Token :: _is_ending_line
Computed by parentize_tokens
Note, some tokens detached from the AST (like comments)
may follow self
even if is_ending_line
is true.
One can use last_real_token_in_line
to get the real ending token
# Is self the last AST token on its line in the source
# Computed by `parentize_tokens`
#
# Note, some tokens detached from the AST (like comments)
# may follow `self` even if `is_ending_line` is true.
# One can use `last_real_token_in_line` to get the real ending token
var is_ending_line = false
src/astutil.nit:118,2--124,27