keywords.py 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #!/usr/bin/env python
  2. #
  3. # Copyright 2007 Neal Norwitz
  4. # Portions Copyright 2007 Google Inc.
  5. #
  6. # Licensed under the Apache License, Version 2.0 (the "License");
  7. # you may not use this file except in compliance with the License.
  8. # You may obtain a copy of the License at
  9. #
  10. # http://www.apache.org/licenses/LICENSE-2.0
  11. #
  12. # Unless required by applicable law or agreed to in writing, software
  13. # distributed under the License is distributed on an "AS IS" BASIS,
  14. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. # See the License for the specific language governing permissions and
  16. # limitations under the License.
  17. """C++ keywords and helper utilities for determining keywords."""
  18. __author__ = 'nnorwitz@google.com (Neal Norwitz)'
  19. try:
  20. # Python 3.x
  21. import builtins
  22. except ImportError:
  23. # Python 2.x
  24. import __builtin__ as builtins
  25. if not hasattr(builtins, 'set'):
  26. # Nominal support for Python 2.3.
  27. from sets import Set as set
  28. TYPES = set('bool char int long short double float void wchar_t unsigned signed'.split())
  29. TYPE_MODIFIERS = set('auto register const inline extern static virtual volatile mutable'.split())
  30. ACCESS = set('public protected private friend'.split())
  31. CASTS = set('static_cast const_cast dynamic_cast reinterpret_cast'.split())
  32. OTHERS = set('true false asm class namespace using explicit this operator sizeof'.split())
  33. OTHER_TYPES = set('new delete typedef struct union enum typeid typename template'.split())
  34. CONTROL = set('case switch default if else return goto'.split())
  35. EXCEPTION = set('try catch throw'.split())
  36. LOOP = set('while do for break continue'.split())
  37. ALL = TYPES | TYPE_MODIFIERS | ACCESS | CASTS | OTHERS | OTHER_TYPES | CONTROL | EXCEPTION | LOOP
  38. def IsKeyword(token):
  39. return token in ALL
  40. def IsBuiltinType(token):
  41. if token in ('virtual', 'inline'):
  42. # These only apply to methods, they can't be types by themselves.
  43. return False
  44. return token in TYPES or token in TYPE_MODIFIERS