class SyntaxTree::Parser

def current_column

Experimental RBS support (using type sampling data from the type_fusion project).

def current_column: () -> untyped

This signature was generated using 472 samples from 1 application.

the current line.
This represents the current column we're in relative to the beginning of
def current_column
  line = line_counts[lineno - 1]
  line[column].to_i - line.start
end