diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-09-18 20:05:18 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-09-18 20:05:18 +0000 |
commit | ed8d322b4086b8b1e1f78b21389cabb23457dcb3 (patch) | |
tree | e05c77a563e311b9e1dd9dd0c3e742b97ee8a610 /include/clang/Parse/Action.h | |
parent | eafc6dcf670070812a99fcc6db21945a786d9829 (diff) |
C++ code completion after the "operator" keyword. Provide overloaded
operators, type specifiers, type names, and nested-name-specifiers.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@82264 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r-- | include/clang/Parse/Action.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h index 5df0b1f596..2d37b86a28 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -2270,6 +2270,14 @@ public: /// /// \param S the scope in which the namespace alias declaration occurs. virtual void CodeCompleteNamespaceAliasDecl(Scope *S) { } + + /// \brief Code completion for an operator name. + /// + /// This code completion action is invoked when the code-completion token is + /// found after the keyword "operator". + /// + /// \param S the scope in which the operator keyword occurs. + virtual void CodeCompleteOperatorName(Scope *S) { } //@} }; |