enum class SourceSelectionKind
Declared at: clang/include/clang/Tooling/Refactoring/ASTSelection.h:25
Enumerators
Name | Value | Comment |
---|---|---|
None | 0 | A node that's not selected. |
ContainsSelection | 1 | A node that's considered to be selected because the whole selection range is inside of its source range. |
ContainsSelectionStart | 2 | A node that's considered to be selected because the start of the selection range is inside its source range. |
ContainsSelectionEnd | 3 | A node that's considered to be selected because the end of the selection range is inside its source range. |
InsideSelection | 4 | A node that's considered to be selected because the node is entirely in the selection range. |