Returns the function's or modifier's source line numbers.
source_line() β int
Example
from glider import*defquery(): functions =Functions().exec(100) functions_location = []for function in functions:# Return the source line number of each function functions_location.append({"function": function.name(), "line": function.source_line()})return functions_location