/usr/share/php-geshi/geshi/ecmascript.php is in php-geshi 1.0.8.11-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 | <?php
/*************************************************************************************
* ecmascript.php
* --------------
* Author: Michel Mariani (http://www.tonton-pixel.com/site/)
* Copyright: (c) 2010 Michel Mariani (http://www.tonton-pixel.com/site/)
* Release Version: 1.0.8.11
* Date Started: 2010/01/08
*
* ECMAScript language file for GeSHi.
*
* CHANGES
* -------
* 2010/01/08 (1.0.8.6)
* - First Release
* - Adapted from javascript.php to support plain ECMAScript/JavaScript (no HTML, no DOM)
* - Fixed regular expression for 'COMMENT_REGEXP' to exclude 'COMMENT_MULTI' syntax
* - Added '~' and removed '@' from 'SYMBOLS'
* - Cleaned up and expanded the list of 'KEYWORDS'
* - Added support for 'ESCAPE_REGEXP' and 'NUMBERS' (from c.php)
* - Selected colors to match my web site color chart
* - Added full number highlighting in all C language style formats
* - Added highlighting of escape sequences in strings, in all C language style formats including Unicode (\uXXXX).
*
* TODO (updated 2010/01/08)
* -------------------------
*
*************************************************************************************
*
* This file is part of GeSHi.
*
* GeSHi is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* GeSHi is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GeSHi; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
************************************************************************************/
$language_data = array (
'LANG_NAME' => 'ECMAScript',
'COMMENT_SINGLE' => array(1 => '//'),
'COMMENT_MULTI' => array('/*' => '*/'),
// Regular Expression Literals
'COMMENT_REGEXP' => array(2 => "/(?<=[\\s^])s\\/(?:\\\\.|(?!\n)[^\\*\\/\\\\])+\\/(?:\\\\.|(?!\n)[^\\*\\/\\\\])+\\/[gimsu]*(?=[\\s$\\.\\;])|(?<=[\\s^(=])m?\\/(?:\\\\.|(?!\n)[^\\*\\/\\\\])+\\/[gimsu]*(?=[\\s$\\.\\,\\;\\)])/iU"),
'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
'QUOTEMARKS' => array("'", '"'),
'ESCAPE_CHAR' => '',
'ESCAPE_REGEXP' => array(
//Simple Single Char Escapes
1 => "#\\\\[\\\\abfnrtv\'\"?\n]#i",
//Hexadecimal Char Specs
2 => "#\\\\x[\da-fA-F]{2}#",
//Hexadecimal Char Specs
3 => "#\\\\u[\da-fA-F]{4}#",
//Hexadecimal Char Specs
4 => "#\\\\U[\da-fA-F]{8}#",
//Octal Char Specs
5 => "#\\\\[0-7]{1,3}#"
),
'NUMBERS' =>
GESHI_NUMBER_INT_BASIC | GESHI_NUMBER_INT_CSTYLE | GESHI_NUMBER_BIN_PREFIX_0B |
GESHI_NUMBER_OCT_PREFIX | GESHI_NUMBER_HEX_PREFIX | GESHI_NUMBER_FLT_NONSCI |
GESHI_NUMBER_FLT_NONSCI_F | GESHI_NUMBER_FLT_SCI_SHORT | GESHI_NUMBER_FLT_SCI_ZERO,
'KEYWORDS' => array(
1 => array( // Reserved literals
'false', 'true',
'null'
),
2 => array( // Main keywords
'break', 'case', 'catch', 'continue', 'default', 'delete', 'do', 'else',
'finally', 'for', 'function', 'if', 'in', 'instanceof', 'new', 'return',
'switch', 'this', 'throw', 'try', 'typeof', 'var', 'void', 'while',
'with'
),
3 => array( // Extra keywords or keywords reserved for future use
'abstract', 'as', 'boolean', 'byte', 'char', 'class', 'const', 'debugger',
'double', 'enum', 'export', 'extends', 'final', 'float', 'goto', 'implements',
'import', 'int', 'interface', 'is', 'long', 'native', 'namespace', 'package',
'private', 'protected', 'public', 'short', 'static', 'super', 'synchronized', 'throws',
'transient', 'use', 'volatile'
),
4 => array( // Operators
'get', 'set'
),
5 => array( // Built-in object classes
'Array', 'Boolean', 'Date', 'EvalError', 'Error', 'Function', 'Math', 'Number',
'Object', 'RangeError', 'ReferenceError', 'RegExp', 'String', 'SyntaxError', 'TypeError', 'URIError'
),
6 => array( // Global properties
'Infinity', 'NaN', 'undefined'
),
7 => array( // Global methods
'decodeURI', 'decodeURIComponent', 'encodeURI', 'encodeURIComponent',
'eval', 'isFinite', 'isNaN', 'parseFloat', 'parseInt',
// The escape and unescape functions do not work properly for non-ASCII characters and have been deprecated.
// In JavaScript 1.5 and later, use encodeURI, decodeURI, encodeURIComponent, and decodeURIComponent.
'escape', 'unescape'
),
8 => array( // Function's arguments
'arguments'
)
),
'SYMBOLS' => array(
'(', ')', '[', ']', '{', '}',
'+', '-', '*', '/', '%',
'!', '.', '&', '|', '^',
'<', '>', '=', '~',
',', ';', '?', ':'
),
'CASE_SENSITIVE' => array(
GESHI_COMMENTS => false,
1 => true,
2 => true,
3 => true,
4 => true,
5 => true,
6 => true,
7 => true,
8 => true
),
'STYLES' => array(
'KEYWORDS' => array(
1 => 'color: #009999;',
2 => 'color: #1500C8;',
3 => 'color: #1500C8;',
4 => 'color: #1500C8;',
5 => 'color: #1500C8;',
6 => 'color: #1500C8;',
7 => 'color: #1500C8;',
8 => 'color: #1500C8;'
),
'COMMENTS' => array(
1 => 'color: #666666; font-style: italic;',
2 => 'color: #CC0000;',
'MULTI' => 'color: #666666; font-style: italic;'
),
'ESCAPE_CHAR' => array(
0 => 'color: #3366CC;',
1 => 'color: #3366CC;',
2 => 'color: #3366CC;',
3 => 'color: #3366CC;',
4 => 'color: #3366CC;',
5 => 'color: #3366CC;',
'HARD' => '',
),
'BRACKETS' => array(
0 => 'color: #008800;'
),
'STRINGS' => array(
0 => 'color: #9900FF;'
),
'NUMBERS' => array(
0 => 'color: #FF00FF;',
GESHI_NUMBER_BIN_PREFIX_0B => 'color: #FF00FF;',
GESHI_NUMBER_OCT_PREFIX => 'color: #FF00FF;',
GESHI_NUMBER_HEX_PREFIX => 'color: #FF00FF;',
GESHI_NUMBER_FLT_SCI_SHORT => 'color: #FF00FF;',
GESHI_NUMBER_FLT_SCI_ZERO => 'color: #FF00FF;',
GESHI_NUMBER_FLT_NONSCI_F => 'color: #FF00FF;',
GESHI_NUMBER_FLT_NONSCI => 'color: #FF00FF;'
),
'METHODS' => array(
1 => 'color: #660066;'
),
'SYMBOLS' => array(
0 => 'color: #339933;'
),
'REGEXPS' => array(
),
'SCRIPT' => array(
0 => '',
1 => '',
2 => '',
3 => ''
)
),
'URLS' => array(
1 => '',
2 => '',
3 => '',
4 => '',
5 => '',
6 => '',
7 => '',
8 => ''
),
'OOLANG' => true,
'OBJECT_SPLITTERS' => array(
1 => '.'
),
'REGEXPS' => array(
),
'STRICT_MODE_APPLIES' => GESHI_NEVER,
'SCRIPT_DELIMITERS' => array(
),
'HIGHLIGHT_STRICT_BLOCK' => array(
),
'TAB_WIDTH' => 4
);
?>
|