Method: ANTLR3::AST::CommonTree#line

Defined in:
lib/antlr3/tree.rb

#lineObject



511
512
513
514
515
516
# File 'lib/antlr3/tree.rb', line 511

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