[clang] [libclang/python] Add isFunctionInlined support (PR #162882)
Jannick Kremer via cfe-commits
cfe-commits at lists.llvm.org
Fri Oct 10 23:33:05 PDT 2025
================
@@ -2362,6 +2362,14 @@ def get_bitfield_width(self) -> int:
"""
return conf.lib.clang_getFieldDeclBitWidth(self) # type: ignore [no-any-return]
+ @cursor_null_guard
+ def is_function_inlined(self) -> bool:
+ """
+ Check if the function is inlined
----------------
DeinAlptraum wrote:
Docstrings should end with a period
https://github.com/llvm/llvm-project/pull/162882
More information about the cfe-commits
mailing list