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

Method language_representation_if_available

python/function.py:1183–1189  ·  view source on GitHub ↗
(
			self, language: str
	)

Source from the content-addressed store, hash-verified

1181 return languagerepresentation.LanguageRepresentationFunction(handle=result)
1182
1183 def language_representation_if_available(
1184 self, language: str
1185 ) -> Optional['languagerepresentation.LanguageRepresentationFunction']:
1186 result = core.BNGetFunctionLanguageRepresentationIfAvailable(self.handle, language)
1187 if result is None:
1188 return None
1189 return languagerepresentation.LanguageRepresentationFunction(handle=result)
1190
1191 @property
1192 def type(self) -> 'types.FunctionType':

Callers 1

pseudo_c_if_availableMethod · 0.95

Calls 1

Tested by

no test coverage detected