C++ operators are represented by CXXOperatorName now, which is already
documented.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@191559
91177308-0d34-0410-b5e6-
96231b3b80d8
The name is a simple identifier. Use ``N.getAsIdentifierInfo()`` to retrieve
the corresponding ``IdentifierInfo*`` pointing to the actual identifier.
- Note that C++ overloaded operators (e.g., "``operator+``") are represented as
- special kinds of identifiers. Use ``IdentifierInfo``'s
- ``getOverloadedOperatorID`` function to determine whether an identifier is an
- overloaded operator name.
``ObjCZeroArgSelector``, ``ObjCOneArgSelector``, ``ObjCMultiArgSelector``