MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / nop

Method nop

python/highlevelil.py:2969–2977  ·  view source on GitHub ↗

``nop`` no operation, this instruction does nothing :param ILSourceLocation loc: Location of expression :return: The no operation expression :rtype: ExpressionIndex

(self, loc: Optional['ILSourceLocation'] = None)

Source from the content-addressed store, hash-verified

2967 core.BNSetHighLevelILExprAttributes(self.handle, expr, result)
2968
2969 def nop(self, loc: Optional['ILSourceLocation'] = None) -> ExpressionIndex:
2970 """
2971 ``nop`` no operation, this instruction does nothing
2972
2973 :param ILSourceLocation loc: Location of expression
2974 :return: The no operation expression
2975 :rtype: ExpressionIndex
2976 """
2977 return self.expr(HighLevelILOperation.HLIL_NOP, source_location=loc)
2978
2979 def block(
2980 self, exprs: List[ExpressionIndex], loc: Optional['ILSourceLocation'] = None

Callers

nothing calls this directly

Calls 1

exprMethod · 0.95

Tested by

no test coverage detected