Returns the corresponding source line numbers of a instruction
Query
from glider import*defquery():#fetch a list of instructions instructions =Instructions().exec(1)#print the corresponding source line numbers of the instructionprint(instructions[0].source_lines())return []