// Autogenerated AST node package org.python.antlr.op; import org.python.antlr.AST; import org.python.antlr.PythonTree; import org.python.core.Py; import org.python.core.PyObject; import org.python.core.PyString; import org.python.core.PyType; import org.python.expose.ExposedGet; import org.python.expose.ExposedMethod; import org.python.expose.ExposedNew; import org.python.expose.ExposedSet; import org.python.expose.ExposedType; @ExposedType(name = "_ast.Lt", base = AST.class) public class Lt extends PythonTree { public static final PyType TYPE = PyType.fromClass(Lt.class); public Lt() { } public Lt(PyType subType) { super(subType); } @ExposedNew @ExposedMethod public void Lt___init__(PyObject[] args, String[] keywords) {} private final static PyString[] fields = new PyString[0]; @ExposedGet(name = "_fields") public PyString[] get_fields() { return fields; } private final static PyString[] attributes = new PyString[0]; @ExposedGet(name = "_attributes") public PyString[] get_attributes() { return attributes; } @ExposedMethod public PyObject __int__() { return Lt___int__(); } final PyObject Lt___int__() { return Py.newInteger(3); } }