Added GeSHi - Generic Syntax Highlighter library 1.0.8.11
This commit is contained in:
parent
343d7666fe
commit
3b2b960a73
302 changed files with 85785 additions and 0 deletions
161
sites/all/libraries/geshi/geshi/haxe.php
Normal file
161
sites/all/libraries/geshi/geshi/haxe.php
Normal file
|
@ -0,0 +1,161 @@
|
|||
<?php
|
||||
/*************************************************************************************
|
||||
* haxe.php
|
||||
* --------
|
||||
* Author: Andy Li (andy@onthewings.net)
|
||||
* John Liao (colorhook@gmail.com)
|
||||
* Copyright: (c) 2012 onthewings (http://www.onthewings.net/)
|
||||
* 2010 colorhook (http://colorhook.com/)
|
||||
* Release Version: 1.0.8.11
|
||||
* Date Started: 2010/10/05
|
||||
*
|
||||
* Haxe language file for GeSHi.
|
||||
* Haxe version: 2.10
|
||||
*************************************************************************************
|
||||
*
|
||||
* 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' => 'Haxe',
|
||||
'COMMENT_SINGLE' => array(1 => '//'),
|
||||
'COMMENT_MULTI' => array('/*' => '*/'),
|
||||
'COMMENT_REGEXP' => array(
|
||||
//Import and Package directives (Basic Support only)
|
||||
2 => '/(?:(?<=import[\\n\\s])|(?<=using[\\n\\s])|(?<=package[\\n\\s]))[\\n\\s]*([a-zA-Z0-9_]+\\.)*([a-zA-Z0-9_]+|\*)(?=[\n\s;])/i',
|
||||
// Haxe comments
|
||||
3 => '#/\*\*(?![\*\/]).*\*/#sU',
|
||||
),
|
||||
'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
|
||||
'QUOTEMARKS' => array("'", '"'),
|
||||
'ESCAPE_CHAR' => '\\',
|
||||
'KEYWORDS' => array(
|
||||
1 => array(
|
||||
//http://haxe.org/ref/keywords
|
||||
'break', 'callback', 'case', 'cast', 'catch', 'class', 'continue', 'default', 'do', 'dynamic',
|
||||
'else', 'enum', 'extends', 'extern', /*'false',*/ 'for', 'function', 'here', 'if',
|
||||
'implements', 'import', 'in', 'inline', 'interface', 'never', 'new', /*'null',*/ 'override',
|
||||
'package', 'private', 'public', 'return', 'static', 'super', 'switch', 'this', 'throw',
|
||||
'trace', /*'true',*/ 'try', 'typedef', 'untyped', 'using', 'var', 'while',
|
||||
'macro', '$type',
|
||||
),
|
||||
2 => array(
|
||||
//primitive values
|
||||
'null', 'false', 'true',
|
||||
),
|
||||
3 => array(
|
||||
//global types
|
||||
'Array', 'ArrayAccess', /*'Bool',*/ 'Class', 'Date', 'DateTools', 'Dynamic',
|
||||
'EReg', 'Enum', 'EnumValue', /*'Float',*/ 'Hash', /*'Int',*/ 'IntHash', 'IntIter',
|
||||
'Iterable', 'Iterator', 'Lambda', 'List', 'Math', 'Null', 'Reflect', 'Std',
|
||||
/*'String',*/ 'StringBuf', 'StringTools', 'Sys', 'Type', /*'UInt',*/ 'ValueType',
|
||||
/*'Void',*/ 'Xml', 'XmlType',
|
||||
),
|
||||
4 => array(
|
||||
//primitive types
|
||||
'Void', 'Bool', 'Int', 'Float', 'UInt', 'String',
|
||||
),
|
||||
5 => array(
|
||||
//compiler switches
|
||||
"#if", "#elseif", "#else", "#end", "#error",
|
||||
),
|
||||
),
|
||||
'SYMBOLS' => array(
|
||||
//http://haxe.org/manual/operators
|
||||
'++', '--',
|
||||
'%',
|
||||
'*', '/',
|
||||
'+', '-',
|
||||
'<<', '>>', '>>>',
|
||||
'|', '&', '^',
|
||||
'==', '!=', '>', '>=', '<', '<=',
|
||||
'...',
|
||||
'&&',
|
||||
'||',
|
||||
'?', ':',
|
||||
'=', '+=', '-=', '/=', '*=', '<<=', '>>=', '>>>=', '|=', '&=', '^=',
|
||||
'(', ')', '[', ']', '{', '}', ';',
|
||||
),
|
||||
'CASE_SENSITIVE' => array(
|
||||
GESHI_COMMENTS => false,
|
||||
1 => true,
|
||||
2 => true,
|
||||
3 => true,
|
||||
4 => true,
|
||||
5 => true,
|
||||
),
|
||||
'STYLES' => array(
|
||||
'KEYWORDS' => array(
|
||||
1 => 'color: #6699cc; font-weight: bold;',
|
||||
2 => 'color: #000066; font-weight: bold;',
|
||||
3 => 'color: #03F; ',
|
||||
4 => 'color: #000033; font-weight: bold;',
|
||||
5 => 'color: #330000; font-weight: bold;',
|
||||
),
|
||||
'COMMENTS' => array(
|
||||
1 => 'color: #666666; font-style: italic;',
|
||||
2 => 'color: #006699;',
|
||||
3 => 'color: #008000; font-style: italic; font-weight: bold;',
|
||||
3 => 'color: #008000; font-style: italic; font-weight: bold;',
|
||||
'MULTI' => 'color: #666666; font-style: italic;',
|
||||
),
|
||||
'ESCAPE_CHAR' => array(
|
||||
0 => 'color: #000099; font-weight: bold;',
|
||||
),
|
||||
'BRACKETS' => array(
|
||||
0 => 'color: #000000;',
|
||||
),
|
||||
'STRINGS' => array(
|
||||
0 => 'color: #FF0000;',
|
||||
),
|
||||
'NUMBERS' => array(
|
||||
0 => 'color: #cc66cc;',
|
||||
),
|
||||
'METHODS' => array(
|
||||
1 => 'color: #006633;',
|
||||
2 => 'color: #006633;',
|
||||
),
|
||||
'SYMBOLS' => array(
|
||||
0 => 'color: #339933;',
|
||||
),
|
||||
'SCRIPT' => array(
|
||||
),
|
||||
'REGEXPS' => array(
|
||||
)
|
||||
),
|
||||
'URLS' => array(
|
||||
1 => '',
|
||||
2 => '',
|
||||
3 => '',
|
||||
4 => '',
|
||||
5 => '',
|
||||
),
|
||||
'OOLANG' => true,
|
||||
'OBJECT_SPLITTERS' => array(
|
||||
1 => '.',
|
||||
),
|
||||
'REGEXPS' => array(
|
||||
),
|
||||
'STRICT_MODE_APPLIES' => GESHI_NEVER,
|
||||
'SCRIPT_DELIMITERS' => array(
|
||||
),
|
||||
'HIGHLIGHT_STRICT_BLOCK' => array(
|
||||
),
|
||||
);
|
||||
|
||||
?>
|
Reference in a new issue