123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- <?php
- $language_data = array (
- 'LANG_NAME' => 'Oxygene (Delphi Prism)',
- 'COMMENT_SINGLE' => array(1 => '//'),
- 'COMMENT_MULTI' => array('(*' => '*)', '{' => '}'),
-
- 'COMMENT_REGEXP' => array(2 => '/{\\$.*?}|\\(\\*\\$.*?\\*\\)/U'),
- 'CASE_KEYWORDS' => 0,
- 'QUOTEMARKS' => array("'"),
- 'ESCAPE_CHAR' => '',
- 'KEYWORDS' => array(
- 1 => array(
- 'and', 'begin', 'case', 'const', 'div', 'do', 'downto', 'else',
- 'end', 'for', 'function', 'if', 'in', 'mod', 'not', 'of', 'or',
- 'procedure', 'repeat', 'record', 'set', 'shl', 'shr', 'then', 'to',
- 'type', 'until', 'uses', 'var','while', 'with', 'xor', 'exit', 'break',
- 'class', 'constructor', 'inherited', 'private', 'public', 'protected',
- 'property', 'As', 'Is', 'Unit', 'Continue', 'Try', 'Except', 'Forward',
- 'Interface','Implementation', 'nil', 'out', 'loop', 'namespace', 'true',
- 'false', 'new', 'ensure', 'require', 'on', 'event', 'delegate', 'method',
- 'raise', 'assembly', 'module', 'using','locking', 'old', 'invariants', 'operator',
- 'self', 'async', 'finalizer', 'where', 'yield', 'nullable', 'Future',
- 'From', 'Finally', 'dynamic'
- ),
- 2 => array(
- 'override', 'virtual', 'External', 'read', 'add', 'remove','final', 'abstract',
- 'empty', 'global', 'locked', 'sealed', 'reintroduce', 'implements', 'each',
- 'default', 'partial', 'finalize', 'enum', 'flags', 'result', 'readonly', 'unsafe',
- 'pinned', 'matching', 'static', 'has', 'step', 'iterator', 'inline', 'nested',
- 'Implies', 'Select', 'Order', 'By', 'Desc', 'Asc', 'Group', 'Join', 'Take',
- 'Skip', 'Concat', 'Union', 'Reverse', 'Distinct', 'Into', 'Equals', 'params',
- 'sequence', 'index', 'notify', 'Parallel', 'create', 'array', 'Queryable', 'Aspect',
- 'volatile'
- ),
- 3 => array(
- 'chr', 'ord', 'inc', 'dec', 'assert', 'iff', 'assigned','futureAssigned', 'length', 'low', 'high', 'typeOf', 'sizeOf', 'disposeAndNil', 'Coalesce', 'unquote'
- ),
- ),
- 'CASE_SENSITIVE' => array(
- GESHI_COMMENTS => false,
- 1 => false,
- 2 => false,
- 3 => false,
- ),
- 'SYMBOLS' => array(
- 0 => array('(', ')', '[', ']'),
- 1 => array('.', ',', ':', ';'),
- 2 => array('@', '^'),
- 3 => array('=', '+', '-', '*', '/')
- ),
- 'STYLES' => array(
- 'KEYWORDS' => array(
- 1 => 'color: #000000; font-weight: bold;',
- 2 => 'color: #000000; font-weight: bold;',
- 3 => 'color: #000066;',
- ),
- 'COMMENTS' => array(
- 1 => 'color: #808080; font-style: italic;',
- 2 => 'color: #008000; font-style: italic;',
- 'MULTI' => 'color: #808080; font-style: italic;'
- ),
- 'ESCAPE_CHAR' => array(
- 0 => 'color: #ff0000; font-weight: bold;'
- ),
- 'BRACKETS' => array(
- 0 => 'color: #000066;'
- ),
- 'STRINGS' => array(
- 0 => 'color: #ff0000;'
- ),
- 'NUMBERS' => array(
- 0 => 'color: #0000ff;'
- ),
- 'METHODS' => array(
- 1 => 'color: #000000;'
- ),
- 'REGEXPS' => array(
- 0 => 'color: #9ac;',
- 1 => 'color: #ff0000;'
- ),
- 'SYMBOLS' => array(
- 0 => 'color: #000066;',
- 1 => 'color: #000066;',
- 2 => 'color: #000066;',
- 3 => 'color: #000066;'
- ),
- 'SCRIPT' => array(
- )
- ),
- 'URLS' => array(
- 1 => '',
- 2 => '',
- 3 => '',
- ),
- 'OOLANG' => true,
- 'OBJECT_SPLITTERS' => array(
- 1 => '.'
- ),
- 'REGEXPS' => array(
-
- 0 => '\$[0-9a-fA-F]+',
-
- 1 => '\#\$?[0-9]{1,3}'
- ),
- 'STRICT_MODE_APPLIES' => GESHI_NEVER,
- 'SCRIPT_DELIMITERS' => array(
- ),
- 'HIGHLIGHT_STRICT_BLOCK' => array(
- ),
- 'TAB_WIDTH' => 2
- );
- ?>
|