Method: XMLParser#column
- Defined in:
- ext/xmlparser.c
#column ⇒ Object
column method
1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 |
# File 'ext/xmlparser.c', line 1882 static VALUE XMLParser_getCurrentColumnNumber(VALUE obj) { XMLParser* parser; int column; GET_PARSER(obj, parser); column = XML_GetCurrentColumnNumber(parser->parser); return INT2FIX(column); } |