================
@@ -1402,6 +1404,22 @@ enum StopDisassemblyType {
eStopDisassemblyTypeAlways
};
+enum ExceptionStage {
+ eExceptionStageCreate = (1 << 0),
+ eExceptionStageThrow = (1 << 1),
+ eExceptionStageReThrow = (1 << 2),
+ eExceptionStageCatch = (1 << 3)
+};
+
+enum NameMatchStyle {
+ eNameMatchStyleAuto = eFunctionNameTypeAuto,
+ eNameMatchStyleFull = eFunctionNameTypeFull,
+ eNameMatchStyleBase = eFunctionNameTypeBase,
+ eNameMatchStyleMethod = eFunctionNameTypeMethod,
+ eNameMatchStyleSelector = eFunctionNameTypeSelector,
+ eNameMatchStyleRegex = eFunctionNameTypeSelector << 1
+};
----------------
medismailben wrote:
Are you making a new enum because the new ones won't apply to function
necessarily ?
https://github.com/llvm/llvm-project/pull/156067
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits