KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

133 lines
3.9KB

  1. <?php
  2. /*************************************************************************************
  3. * parasail.php
  4. * -------
  5. * Author: T. Taft (taft@adacore.com)
  6. * Copyright: (c) 2012 AdaCore (http://adacore.com/)
  7. * Release Version: 1.0.8.11
  8. * Date Started: 2012/08/02
  9. *
  10. * ParaSail language file for GeSHi.
  11. *
  12. * Words are from SciTe configuration file
  13. *
  14. * CHANGES
  15. * -------
  16. * 2012/08/02 (1.0.0)
  17. * - First Release
  18. *
  19. * TODO (updated 2012/08/02)
  20. * -------------------------
  21. *
  22. *************************************************************************************
  23. *
  24. * This file is part of GeSHi.
  25. *
  26. * GeSHi is free software; you can redistribute it and/or modify
  27. * it under the terms of the GNU General Public License as published by
  28. * the Free Software Foundation; either version 2 of the License, or
  29. * (at your option) any later version.
  30. *
  31. * GeSHi is distributed in the hope that it will be useful,
  32. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  33. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  34. * GNU General Public License for more details.
  35. *
  36. * You should have received a copy of the GNU General Public License
  37. * along with GeSHi; if not, write to the Free Software
  38. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  39. *
  40. ************************************************************************************/
  41. $language_data = array (
  42. 'LANG_NAME' => 'ParaSail',
  43. 'COMMENT_SINGLE' => array(1 => '//'),
  44. 'COMMENT_MULTI' => array('{' => '}'),
  45. 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
  46. 'QUOTEMARKS' => array('"'),
  47. 'ESCAPE_CHAR' => '\\',
  48. 'KEYWORDS' => array(
  49. 1 => array(
  50. 'all', 'block', 'case', 'continue', 'each',
  51. 'else', 'elsif', 'exit', 'for',
  52. 'forward', 'if', 'loop', 'return', 'reverse', 'some',
  53. 'then', 'until', 'while', 'with'
  54. ),
  55. 2 => array(
  56. 'abs', 'and','in', 'mod', 'not', 'null', 'or', 'rem', 'xor'
  57. ),
  58. 3 => array(
  59. 'abstract', 'class',
  60. 'concurrent', 'const',
  61. 'end', 'extends', 'exports',
  62. 'func', 'global', 'implements', 'import',
  63. 'interface', 'is', 'lambda', 'locked',
  64. 'new', 'of', 'op', 'optional',
  65. 'private', 'queued', 'ref',
  66. 'separate', 'type', 'var',
  67. )
  68. ),
  69. 'SYMBOLS' => array(
  70. '(', ')', '[', ']', '<', '>'
  71. ),
  72. 'CASE_SENSITIVE' => array(
  73. GESHI_COMMENTS => false,
  74. 1 => false,
  75. 2 => false,
  76. 3 => false,
  77. ),
  78. 'STYLES' => array(
  79. 'KEYWORDS' => array(
  80. 1 => 'color: #00007f;',
  81. 2 => 'color: #0000ff;',
  82. 3 => 'color: #46aa03; font-weight:bold;',
  83. ),
  84. 'BRACKETS' => array(
  85. 0 => 'color: #66cc66;'
  86. ),
  87. 'COMMENTS' => array(
  88. 1 => 'color: #adadad; font-style: italic;',
  89. 'MULTI' => 'color: #808080; font-style: italic;'
  90. ),
  91. 'ESCAPE_CHAR' => array(
  92. 0 => 'color: #000099; font-weight: bold;'
  93. ),
  94. 'BRACKETS' => array(
  95. 0 => 'color: #66cc66;'
  96. ),
  97. 'STRINGS' => array(
  98. 0 => 'color: #7f007f;'
  99. ),
  100. 'NUMBERS' => array(
  101. 0 => 'color: #ff0000;'
  102. ),
  103. 'METHODS' => array(
  104. 1 => 'color: #202020;'
  105. ),
  106. 'SYMBOLS' => array(
  107. 0 => 'color: #66cc66;'
  108. ),
  109. 'REGEXPS' => array(
  110. ),
  111. 'SCRIPT' => array(
  112. )
  113. ),
  114. 'URLS' => array(
  115. 1 => '',
  116. 2 => '',
  117. 3 => ''
  118. ),
  119. 'OOLANG' => true,
  120. 'OBJECT_SPLITTERS' => array(
  121. 1 => '.'
  122. ),
  123. 'REGEXPS' => array(
  124. ),
  125. 'STRICT_MODE_APPLIES' => GESHI_NEVER,
  126. 'SCRIPT_DELIMITERS' => array(
  127. ),
  128. 'HIGHLIGHT_STRICT_BLOCK' => array(
  129. )
  130. );
  131. ?>