py_Frame_sourceloc method

Pointer<Char> py_Frame_sourceloc(
  1. Pointer<py_Frame> frame,
  2. Pointer<Int> lineno
)

Get the current source location of the frame.

Implementation

ffi.Pointer<ffi.Char> py_Frame_sourceloc(
  ffi.Pointer<py_Frame> frame,
  ffi.Pointer<ffi.Int> lineno,
) {
  return _py_Frame_sourceloc(
    frame,
    lineno,
  );
}