Instruction.is_placeholder()
Returns true if the instruction is placeholder instruction, otherwise returns false. A placeholder instruction is generally found in modifiers
Query Example
from glider import *
def query():
ins = (
Modifiers()
.exec(1)
.instructions()
.exec()
.filter(lambda x: x.is_placeholder())
)
return insOutput Example

Last updated