cpp.js 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. define("dojox/highlight/languages/cpp", ["dojo", "dojox/main", "../_base"], function(dojo, dojox){
  2. var dh = dojox.highlight, dhc = dh.constants;
  3. dh.languages.cpp = {
  4. // summary: C++ highlight definitions
  5. defaultMode: {
  6. lexems: [dhc.UNDERSCORE_IDENT_RE],
  7. illegal: '</',
  8. contains: ['comment', 'string', 'number', 'preprocessor'],
  9. keywords: {
  10. 'false': 1, 'int': 1, 'float': 1, 'while': 1, 'private': 1,
  11. 'char': 1, 'catch': 1, 'export': 1, 'virtual': 1,
  12. 'operator': 2, 'sizeof': 2, 'dynamic_cast': 2, 'typedef': 2,
  13. 'const_cast': 2, 'const': 1, 'struct': 1, 'for': 1,
  14. 'static_cast': 2, 'union': 1, 'namespace': 1, 'unsigned': 1,
  15. 'long': 1, 'throw': 1, 'volatile': 2, 'static': 1,
  16. 'protected': 1, 'bool': 1, 'template': 1, 'mutable': 1,
  17. 'if': 1, 'public': 1, 'friend': 2, 'do': 1, 'return': 1,
  18. 'goto': 1, 'auto': 1, 'void': 2, 'enum': 1, 'else': 1,
  19. 'break': 1, 'new': 1, 'extern': 1, 'using': 1, 'true': 1,
  20. 'class': 1, 'asm': 1, 'case': 1, 'typeid': 1, 'short': 1,
  21. 'reinterpret_cast': 2, 'default': 1, 'double': 1,
  22. 'register': 1, 'explicit': 1, 'signed': 1, 'typename': 1,
  23. 'try': 1, 'this': 1, 'switch': 1, 'continue': 1, 'wchar_t': 1,
  24. 'inline': 1, 'delete': 1
  25. }
  26. },
  27. modes: [
  28. dhc.C_LINE_COMMENT_MODE,
  29. dhc.C_BLOCK_COMMENT_MODE,
  30. dhc.C_NUMBER_MODE,
  31. dhc.QUOTE_STRING_MODE,
  32. dhc.BACKSLASH_ESCAPE,
  33. {
  34. className: 'string',
  35. begin: '\'',
  36. end: '[^\\\\]\'',
  37. illegal: '[^\\\\][^\']'
  38. },
  39. {
  40. className: 'preprocessor',
  41. begin: '#', end: '$'
  42. }
  43. ]
  44. };
  45. return dh.languages.cpp;
  46. });