Method: ANTLR3::AST::CommonTree#column

Defined in:
lib/antlr3/tree.rb

#columnObject



518
519
520
521
522
523
# File 'lib/antlr3/tree.rb', line 518

def column
  if @token.nil? or @token.column == -1
    return( empty? ? 0 : first.column )
  end
  return @token.column
end