965 lines
60 KiB
PHP
965 lines
60 KiB
PHP
|
<?php
|
||
|
/*************************************************************************************
|
||
|
* racket.php
|
||
|
* ----------
|
||
|
* Author: Tim Brown (tim@timb.net)
|
||
|
* Copyright: (c) 2013 Tim Brown ((https://github.com/tim-brown/geshi-racket))
|
||
|
* Release Version: 1.0.8.12
|
||
|
* Date Started: 2013-03-01
|
||
|
*
|
||
|
* Racket language file for GeSHi.
|
||
|
*
|
||
|
* This file was built automatically from the scripts in
|
||
|
* https://github.com/tim-brown/geshi-racket (you didn't think
|
||
|
* I typed those NUMBER regular expressions in myself, did you?).
|
||
|
* Use those scripts to regenerate the file.
|
||
|
*
|
||
|
* CHANGES
|
||
|
* -------
|
||
|
* 1.0 (2013-03-31)
|
||
|
* - Initial Release1.1 (2013-03-31)
|
||
|
* - Added URLs, "symbol"-like identifiers moved to SYMBOLS*
|
||
|
*
|
||
|
* TODO (updated 2013-04-25)
|
||
|
* -------------------------
|
||
|
* * better handling of empty and short arrays
|
||
|
* * care more about indentation and line lengths
|
||
|
* * most compound regexps are possibly over-bracketed: (or ...)
|
||
|
* * most compound regexps are possibly over-bracketed: (: ...)
|
||
|
* * URLs should be formed more smartly by discovering which module they came from.
|
||
|
* * '|...| identifiers
|
||
|
* * #<<HERE strings
|
||
|
* * #;(...) comments -- (note: requires balanced parenthesis regexp)
|
||
|
*
|
||
|
*************************************************************************************
|
||
|
*
|
||
|
* 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' => 'Racket',
|
||
|
'COMMENT_SINGLE' => array(
|
||
|
1 => ';',
|
||
|
),
|
||
|
'COMMENT_MULTI' => array(
|
||
|
'#|' => '|#',
|
||
|
),
|
||
|
'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
|
||
|
'QUOTEMARKS' => array('"',
|
||
|
),
|
||
|
'ESCAPE_CHAR' => '\\',
|
||
|
'KEYWORDS' => array(
|
||
|
1 => array(
|
||
|
'abort-current-continuation', 'abs', 'absolute-path?', 'acos', 'add1',
|
||
|
'alarm-evt', 'always-evt', 'andmap', 'angle', 'append',
|
||
|
'arithmetic-shift', 'arity-at-least-value', 'arity-at-least?',
|
||
|
'asin', 'assf', 'assoc', 'assq', 'assv', 'atan', 'banner',
|
||
|
'bitwise-and', 'bitwise-bit-field', 'bitwise-bit-set?',
|
||
|
'bitwise-ior', 'bitwise-not', 'bitwise-xor', 'boolean?',
|
||
|
'bound-identifier=?', 'box', 'box-cas!', 'box-immutable', 'box?',
|
||
|
'break-enabled', 'break-thread', 'build-list', 'build-path',
|
||
|
'build-path/convention-type', 'build-string', 'build-vector',
|
||
|
'byte-pregexp', 'byte-pregexp?', 'byte-ready?', 'byte-regexp',
|
||
|
'byte-regexp?', 'byte?', 'bytes', 'bytes>?', 'bytes<?',
|
||
|
'bytes->immutable-bytes', 'bytes->list', 'bytes->path',
|
||
|
'bytes->path-element', 'bytes->string/latin-1',
|
||
|
'bytes->string/locale', 'bytes->string/utf-8',
|
||
|
'bytes-append', 'bytes-close-converter', 'bytes-convert',
|
||
|
'bytes-convert-end', 'bytes-converter?', 'bytes-copy',
|
||
|
'bytes-copy!', 'bytes-fill!', 'bytes-length',
|
||
|
'bytes-open-converter', 'bytes-ref', 'bytes-set!',
|
||
|
'bytes-utf-8-index', 'bytes-utf-8-length', 'bytes-utf-8-ref',
|
||
|
'bytes=?', 'bytes?', 'caaaar', 'caaadr', 'caaar', 'caadar',
|
||
|
'caaddr', 'caadr', 'caar', 'cadaar', 'cadadr', 'cadar', 'caddar',
|
||
|
'cadddr', 'caddr', 'cadr', 'call-in-nested-thread',
|
||
|
'call-with-break-parameterization',
|
||
|
'call-with-composable-continuation',
|
||
|
'call-with-continuation-barrier', 'call-with-continuation-prompt',
|
||
|
'call-with-current-continuation', 'call-with-escape-continuation',
|
||
|
'call-with-exception-handler',
|
||
|
'call-with-immediate-continuation-mark',
|
||
|
'call-with-parameterization', 'call-with-semaphore',
|
||
|
'call-with-semaphore/enable-break', 'call-with-values', 'call/cc',
|
||
|
'call/ec', 'car', 'cdaaar', 'cdaadr', 'cdaar', 'cdadar', 'cdaddr',
|
||
|
'cdadr', 'cdar', 'cddaar', 'cddadr', 'cddar', 'cdddar', 'cddddr',
|
||
|
'cdddr', 'cddr', 'cdr', 'ceiling', 'channel-get', 'channel-put',
|
||
|
'channel-put-evt', 'channel-put-evt?', 'channel-try-get',
|
||
|
'channel?', 'chaperone-box', 'chaperone-continuation-mark-key',
|
||
|
'chaperone-evt', 'chaperone-hash', 'chaperone-of?',
|
||
|
'chaperone-procedure', 'chaperone-prompt-tag', 'chaperone-struct',
|
||
|
'chaperone-struct-type', 'chaperone-vector', 'chaperone?',
|
||
|
'char>=?', 'char>?', 'char<=?', 'char<?',
|
||
|
'char->integer', 'char-alphabetic?', 'char-blank?',
|
||
|
'char-ci>=?', 'char-ci>?', 'char-ci<=?', 'char-ci<?',
|
||
|
'char-ci=?', 'char-downcase', 'char-foldcase',
|
||
|
'char-general-category', 'char-graphic?', 'char-iso-control?',
|
||
|
'char-lower-case?', 'char-numeric?', 'char-punctuation?',
|
||
|
'char-ready?', 'char-symbolic?', 'char-title-case?',
|
||
|
'char-titlecase', 'char-upcase', 'char-upper-case?',
|
||
|
'char-utf-8-length', 'char-whitespace?', 'char=?', 'char?',
|
||
|
'check-duplicate-identifier',
|
||
|
'checked-procedure-check-and-extract', 'choice-evt',
|
||
|
'cleanse-path', 'close-input-port', 'close-output-port',
|
||
|
'collect-garbage', 'collection-file-path', 'collection-path',
|
||
|
'compile', 'compile-allow-set!-undefined',
|
||
|
'compile-context-preservation-enabled',
|
||
|
'compile-enforce-module-constants', 'compile-syntax',
|
||
|
'compiled-expression?', 'compiled-module-expression?',
|
||
|
'complete-path?', 'complex?', 'compose', 'compose1', 'cons',
|
||
|
'continuation-mark-key?', 'continuation-mark-set->context',
|
||
|
'continuation-mark-set->list',
|
||
|
'continuation-mark-set->list*', 'continuation-mark-set-first',
|
||
|
'continuation-mark-set?', 'continuation-marks',
|
||
|
'continuation-prompt-available?', 'continuation-prompt-tag?',
|
||
|
'continuation?', 'copy-file', 'cos',
|
||
|
'current-break-parameterization', 'current-code-inspector',
|
||
|
'current-command-line-arguments', 'current-compile',
|
||
|
'current-compiled-file-roots', 'current-continuation-marks',
|
||
|
'current-custodian', 'current-directory', 'current-drive',
|
||
|
'current-error-port', 'current-eval',
|
||
|
'current-evt-pseudo-random-generator', 'current-gc-milliseconds',
|
||
|
'current-get-interaction-input-port',
|
||
|
'current-inexact-milliseconds', 'current-input-port',
|
||
|
'current-inspector', 'current-library-collection-paths',
|
||
|
'current-load', 'current-load-extension',
|
||
|
'current-load-relative-directory', 'current-load/use-compiled',
|
||
|
'current-locale', 'current-logger', 'current-memory-use',
|
||
|
'current-milliseconds', 'current-module-declare-name',
|
||
|
'current-module-declare-source', 'current-module-name-resolver',
|
||
|
'current-namespace', 'current-output-port',
|
||
|
'current-parameterization', 'current-preserved-thread-cell-values',
|
||
|
'current-print', 'current-process-milliseconds',
|
||
|
'current-prompt-read', 'current-pseudo-random-generator',
|
||
|
'current-read-interaction', 'current-reader-guard',
|
||
|
'current-readtable', 'current-seconds', 'current-security-guard',
|
||
|
'current-subprocess-custodian-mode', 'current-thread',
|
||
|
'current-thread-group', 'current-thread-initial-stack-size',
|
||
|
'current-write-relative-directory', 'custodian-box-value',
|
||
|
'custodian-box?', 'custodian-limit-memory',
|
||
|
'custodian-managed-list', 'custodian-memory-accounting-available?',
|
||
|
'custodian-require-memory', 'custodian-shutdown-all', 'custodian?',
|
||
|
'custom-print-quotable-accessor', 'custom-print-quotable?',
|
||
|
'custom-write-accessor', 'custom-write?', 'date*-nanosecond',
|
||
|
'date*-time-zone-name', 'date*?', 'date-day', 'date-dst?',
|
||
|
'date-hour', 'date-minute', 'date-month', 'date-second',
|
||
|
'date-time-zone-offset', 'date-week-day', 'date-year',
|
||
|
'date-year-day', 'date?', 'datum->syntax',
|
||
|
'datum-intern-literal', 'default-continuation-prompt-tag',
|
||
|
'delete-directory', 'delete-file', 'denominator',
|
||
|
'directory-exists?', 'directory-list', 'display', 'displayln',
|
||
|
'double-flonum?', 'dump-memory-stats', 'dynamic-require',
|
||
|
'dynamic-require-for-syntax', 'dynamic-wind', 'eof', 'eof-object?',
|
||
|
'ephemeron-value', 'ephemeron?', 'eprintf', 'eq-hash-code', 'eq?',
|
||
|
'equal-hash-code', 'equal-secondary-hash-code', 'equal?',
|
||
|
'equal?/recur', 'eqv-hash-code', 'eqv?', 'error',
|
||
|
'error-display-handler', 'error-escape-handler',
|
||
|
'error-print-context-length', 'error-print-source-location',
|
||
|
'error-print-width', 'error-value->string-handler', 'eval',
|
||
|
'eval-jit-enabled', 'eval-syntax', 'even?', 'evt?',
|
||
|
'exact->inexact', 'exact-integer?',
|
||
|
'exact-nonnegative-integer?', 'exact-positive-integer?', 'exact?',
|
||
|
'executable-yield-handler', 'exit', 'exit-handler',
|
||
|
'exn-continuation-marks', 'exn-message', 'exn:break-continuation',
|
||
|
'exn:break:hang-up?', 'exn:break:terminate?', 'exn:break?',
|
||
|
'exn:fail:contract:arity?', 'exn:fail:contract:continuation?',
|
||
|
'exn:fail:contract:divide-by-zero?',
|
||
|
'exn:fail:contract:non-fixnum-result?',
|
||
|
'exn:fail:contract:variable-id', 'exn:fail:contract:variable?',
|
||
|
'exn:fail:contract?', 'exn:fail:filesystem:errno-errno',
|
||
|
'exn:fail:filesystem:errno?', 'exn:fail:filesystem:exists?',
|
||
|
'exn:fail:filesystem:version?', 'exn:fail:filesystem?',
|
||
|
'exn:fail:network:errno-errno', 'exn:fail:network:errno?',
|
||
|
'exn:fail:network?', 'exn:fail:out-of-memory?',
|
||
|
'exn:fail:read-srclocs', 'exn:fail:read:eof?',
|
||
|
'exn:fail:read:non-char?', 'exn:fail:read?',
|
||
|
'exn:fail:syntax-exprs', 'exn:fail:syntax:unbound?',
|
||
|
'exn:fail:syntax?', 'exn:fail:unsupported?', 'exn:fail:user?',
|
||
|
'exn:fail?', 'exn:srclocs-accessor', 'exn:srclocs?', 'exn?', 'exp',
|
||
|
'expand', 'expand-once', 'expand-syntax', 'expand-syntax-once',
|
||
|
'expand-syntax-to-top-form', 'expand-to-top-form',
|
||
|
'expand-user-path', 'expt', 'file-exists?',
|
||
|
'file-or-directory-identity', 'file-or-directory-modify-seconds',
|
||
|
'file-or-directory-permissions', 'file-position', 'file-position*',
|
||
|
'file-size', 'file-stream-buffer-mode', 'file-stream-port?',
|
||
|
'filesystem-root-list', 'filter', 'find-executable-path',
|
||
|
'find-library-collection-paths', 'find-system-path', 'findf',
|
||
|
'fixnum?', 'floating-point-bytes->real', 'flonum?', 'floor',
|
||
|
'flush-output', 'foldl', 'foldr', 'for-each', 'format', 'fprintf',
|
||
|
'free-identifier=?', 'free-label-identifier=?',
|
||
|
'free-template-identifier=?', 'free-transformer-identifier=?',
|
||
|
'gcd', 'generate-temporaries', 'gensym', 'get-output-bytes',
|
||
|
'get-output-string', 'getenv', 'global-port-print-handler',
|
||
|
'guard-evt', 'handle-evt', 'handle-evt?', 'hash', 'hash->list',
|
||
|
'hash-copy', 'hash-count', 'hash-eq?', 'hash-equal?', 'hash-eqv?',
|
||
|
'hash-for-each', 'hash-has-key?', 'hash-iterate-first',
|
||
|
'hash-iterate-key', 'hash-iterate-next', 'hash-iterate-value',
|
||
|
'hash-keys', 'hash-map', 'hash-placeholder?', 'hash-ref',
|
||
|
'hash-ref!', 'hash-remove', 'hash-remove!', 'hash-set',
|
||
|
'hash-set!', 'hash-set*', 'hash-set*!', 'hash-update',
|
||
|
'hash-update!', 'hash-values', 'hash-weak?', 'hash?', 'hasheq',
|
||
|
'hasheqv', 'identifier-binding', 'identifier-label-binding',
|
||
|
'identifier-prune-lexical-context',
|
||
|
'identifier-prune-to-source-module',
|
||
|
'identifier-remove-from-definition-context',
|
||
|
'identifier-template-binding', 'identifier-transformer-binding',
|
||
|
'identifier?', 'imag-part', 'immutable?', 'impersonate-box',
|
||
|
'impersonate-continuation-mark-key', 'impersonate-hash',
|
||
|
'impersonate-procedure', 'impersonate-prompt-tag',
|
||
|
'impersonate-struct', 'impersonate-vector', 'impersonator-of?',
|
||
|
'impersonator-prop:application-mark',
|
||
|
'impersonator-property-accessor-procedure?',
|
||
|
'impersonator-property?', 'impersonator?', 'in-cycle',
|
||
|
'in-directory', 'in-hash', 'in-hash-keys', 'in-hash-pairs',
|
||
|
'in-hash-values', 'in-parallel', 'in-sequences',
|
||
|
'in-values*-sequence', 'in-values-sequence', 'inexact->exact',
|
||
|
'inexact-real?', 'inexact?', 'input-port?', 'inspector?',
|
||
|
'integer->char', 'integer->integer-bytes',
|
||
|
'integer-bytes->integer', 'integer-length', 'integer-sqrt',
|
||
|
'integer-sqrt/remainder', 'integer?',
|
||
|
'internal-definition-context-seal', 'internal-definition-context?',
|
||
|
'keyword<?', 'keyword->string', 'keyword-apply', 'keyword?',
|
||
|
'kill-thread', 'lcm', 'length', 'liberal-define-context?',
|
||
|
'link-exists?', 'list', 'list*', 'list->bytes',
|
||
|
'list->string', 'list->vector', 'list-ref', 'list-tail',
|
||
|
'list?', 'load', 'load-extension', 'load-on-demand-enabled',
|
||
|
'load-relative', 'load-relative-extension', 'load/cd',
|
||
|
'load/use-compiled', 'local-expand', 'local-expand/capture-lifts',
|
||
|
'local-transformer-expand',
|
||
|
'local-transformer-expand/capture-lifts', 'locale-string-encoding',
|
||
|
'log', 'log-level?', 'log-max-level', 'log-message',
|
||
|
'log-receiver?', 'logger-name', 'logger?', 'magnitude',
|
||
|
'make-arity-at-least', 'make-base-empty-namespace',
|
||
|
'make-base-namespace', 'make-bytes', 'make-channel',
|
||
|
'make-continuation-mark-key', 'make-continuation-prompt-tag',
|
||
|
'make-custodian', 'make-custodian-box', 'make-date', 'make-date*',
|
||
|
'make-derived-parameter', 'make-directory', 'make-do-sequence',
|
||
|
'make-empty-namespace', 'make-ephemeron', 'make-exn',
|
||
|
'make-exn:break', 'make-exn:break:hang-up',
|
||
|
'make-exn:break:terminate', 'make-exn:fail',
|
||
|
'make-exn:fail:contract', 'make-exn:fail:contract:arity',
|
||
|
'make-exn:fail:contract:continuation',
|
||
|
'make-exn:fail:contract:divide-by-zero',
|
||
|
'make-exn:fail:contract:non-fixnum-result',
|
||
|
'make-exn:fail:contract:variable', 'make-exn:fail:filesystem',
|
||
|
'make-exn:fail:filesystem:errno',
|
||
|
'make-exn:fail:filesystem:exists',
|
||
|
'make-exn:fail:filesystem:version', 'make-exn:fail:network',
|
||
|
'make-exn:fail:network:errno', 'make-exn:fail:out-of-memory',
|
||
|
'make-exn:fail:read', 'make-exn:fail:read:eof',
|
||
|
'make-exn:fail:read:non-char', 'make-exn:fail:syntax',
|
||
|
'make-exn:fail:syntax:unbound', 'make-exn:fail:unsupported',
|
||
|
'make-exn:fail:user', 'make-file-or-directory-link', 'make-hash',
|
||
|
'make-hash-placeholder', 'make-hasheq', 'make-hasheq-placeholder',
|
||
|
'make-hasheqv', 'make-hasheqv-placeholder', 'make-immutable-hash',
|
||
|
'make-immutable-hasheq', 'make-immutable-hasheqv',
|
||
|
'make-impersonator-property', 'make-input-port', 'make-inspector',
|
||
|
'make-keyword-procedure', 'make-known-char-range-list',
|
||
|
'make-log-receiver', 'make-logger', 'make-output-port',
|
||
|
'make-parameter', 'make-phantom-bytes', 'make-pipe',
|
||
|
'make-placeholder', 'make-polar', 'make-prefab-struct',
|
||
|
'make-pseudo-random-generator', 'make-reader-graph',
|
||
|
'make-readtable', 'make-rectangular', 'make-rename-transformer',
|
||
|
'make-resolved-module-path', 'make-security-guard',
|
||
|
'make-semaphore', 'make-set!-transformer', 'make-shared-bytes',
|
||
|
'make-sibling-inspector', 'make-special-comment', 'make-srcloc',
|
||
|
'make-string', 'make-struct-field-accessor',
|
||
|
'make-struct-field-mutator', 'make-struct-type',
|
||
|
'make-struct-type-property', 'make-syntax-delta-introducer',
|
||
|
'make-syntax-introducer', 'make-thread-cell', 'make-thread-group',
|
||
|
'make-vector', 'make-weak-box', 'make-weak-hash',
|
||
|
'make-weak-hasheq', 'make-weak-hasheqv', 'make-will-executor',
|
||
|
'map', 'max', 'mcar', 'mcdr', 'mcons', 'member', 'memf', 'memq',
|
||
|
'memv', 'min', 'module->exports', 'module->imports',
|
||
|
'module->language-info', 'module->namespace',
|
||
|
'module-compiled-exports', 'module-compiled-imports',
|
||
|
'module-compiled-language-info', 'module-compiled-name',
|
||
|
'module-compiled-submodules', 'module-declared?',
|
||
|
'module-path-index-join', 'module-path-index-resolve',
|
||
|
'module-path-index-split', 'module-path-index-submodule',
|
||
|
'module-path-index?', 'module-path?', 'module-predefined?',
|
||
|
'module-provide-protected?', 'modulo', 'mpair?', 'nack-guard-evt',
|
||
|
'namespace-anchor->empty-namespace',
|
||
|
'namespace-anchor->namespace', 'namespace-anchor?',
|
||
|
'namespace-attach-module', 'namespace-attach-module-declaration',
|
||
|
'namespace-base-phase', 'namespace-mapped-symbols',
|
||
|
'namespace-module-identifier', 'namespace-module-registry',
|
||
|
'namespace-require', 'namespace-require/constant',
|
||
|
'namespace-require/copy', 'namespace-require/expansion-time',
|
||
|
'namespace-set-variable-value!', 'namespace-symbol->identifier',
|
||
|
'namespace-syntax-introduce', 'namespace-undefine-variable!',
|
||
|
'namespace-unprotect-module', 'namespace-variable-value',
|
||
|
'namespace?', 'negative?', 'never-evt', 'newline',
|
||
|
'normal-case-path', 'not', 'null', 'null?', 'number->string',
|
||
|
'number?', 'numerator', 'object-name', 'odd?', 'open-input-bytes',
|
||
|
'open-input-string', 'open-output-bytes', 'open-output-string',
|
||
|
'ormap', 'output-port?', 'pair?', 'parameter-procedure=?',
|
||
|
'parameter?', 'parameterization?', 'path->bytes',
|
||
|
'path->complete-path', 'path->directory-path',
|
||
|
'path->string', 'path-add-suffix', 'path-convention-type',
|
||
|
'path-element->bytes', 'path-element->string',
|
||
|
'path-for-some-system?', 'path-list-string->path-list',
|
||
|
'path-replace-suffix', 'path-string?', 'path?', 'peek-byte',
|
||
|
'peek-byte-or-special', 'peek-bytes', 'peek-bytes!',
|
||
|
'peek-bytes-avail!', 'peek-bytes-avail!*',
|
||
|
'peek-bytes-avail!/enable-break', 'peek-char',
|
||
|
'peek-char-or-special', 'peek-string', 'peek-string!',
|
||
|
'phantom-bytes?', 'pipe-content-length', 'placeholder-get',
|
||
|
'placeholder-set!', 'placeholder?', 'poll-guard-evt',
|
||
|
'port-closed-evt', 'port-closed?', 'port-commit-peeked',
|
||
|
'port-count-lines!', 'port-count-lines-enabled',
|
||
|
'port-display-handler', 'port-file-identity', 'port-file-unlock',
|
||
|
'port-next-location', 'port-print-handler', 'port-progress-evt',
|
||
|
'port-provides-progress-evts?', 'port-read-handler',
|
||
|
'port-try-file-lock?', 'port-write-handler', 'port-writes-atomic?',
|
||
|
'port-writes-special?', 'port?', 'positive?',
|
||
|
'prefab-key->struct-type', 'prefab-key?', 'prefab-struct-key',
|
||
|
'pregexp', 'pregexp?', 'primitive-closure?',
|
||
|
'primitive-result-arity', 'primitive?', 'print',
|
||
|
'print-as-expression', 'print-boolean-long-form', 'print-box',
|
||
|
'print-graph', 'print-hash-table', 'print-mpair-curly-braces',
|
||
|
'print-pair-curly-braces', 'print-reader-abbreviations',
|
||
|
'print-struct', 'print-syntax-width', 'print-unreadable',
|
||
|
'print-vector-length', 'printf', 'procedure->method',
|
||
|
'procedure-arity', 'procedure-arity-includes?', 'procedure-arity?',
|
||
|
'procedure-closure-contents-eq?', 'procedure-extract-target',
|
||
|
'procedure-keywords', 'procedure-reduce-arity',
|
||
|
'procedure-reduce-keyword-arity', 'procedure-rename',
|
||
|
'procedure-struct-type?', 'procedure?', 'progress-evt?',
|
||
|
'prop:arity-string', 'prop:checked-procedure',
|
||
|
'prop:custom-print-quotable', 'prop:custom-write',
|
||
|
'prop:equal+hash', 'prop:evt', 'prop:exn:srclocs',
|
||
|
'prop:impersonator-of', 'prop:input-port',
|
||
|
'prop:liberal-define-context', 'prop:output-port',
|
||
|
'prop:procedure', 'prop:rename-transformer', 'prop:sequence',
|
||
|
'prop:set!-transformer', 'pseudo-random-generator->vector',
|
||
|
'pseudo-random-generator-vector?', 'pseudo-random-generator?',
|
||
|
'putenv', 'quotient', 'quotient/remainder', 'raise',
|
||
|
'raise-argument-error', 'raise-arguments-error',
|
||
|
'raise-arity-error', 'raise-mismatch-error', 'raise-range-error',
|
||
|
'raise-result-error', 'raise-syntax-error', 'raise-type-error',
|
||
|
'raise-user-error', 'random', 'random-seed', 'rational?',
|
||
|
'rationalize', 'read', 'read-accept-bar-quote', 'read-accept-box',
|
||
|
'read-accept-compiled', 'read-accept-dot', 'read-accept-graph',
|
||
|
'read-accept-infix-dot', 'read-accept-lang',
|
||
|
'read-accept-quasiquote', 'read-accept-reader', 'read-byte',
|
||
|
'read-byte-or-special', 'read-bytes', 'read-bytes!',
|
||
|
'read-bytes-avail!', 'read-bytes-avail!*',
|
||
|
'read-bytes-avail!/enable-break', 'read-bytes-line',
|
||
|
'read-case-sensitive', 'read-char', 'read-char-or-special',
|
||
|
'read-curly-brace-as-paren', 'read-decimal-as-inexact',
|
||
|
'read-eval-print-loop', 'read-language', 'read-line',
|
||
|
'read-on-demand-source', 'read-square-bracket-as-paren',
|
||
|
'read-string', 'read-string!', 'read-syntax',
|
||
|
'read-syntax/recursive', 'read/recursive', 'readtable-mapping',
|
||
|
'readtable?', 'real->decimal-string', 'real->double-flonum',
|
||
|
'real->floating-point-bytes', 'real->single-flonum',
|
||
|
'real-part', 'real?', 'regexp', 'regexp-match',
|
||
|
'regexp-match-exact?', 'regexp-match-peek',
|
||
|
'regexp-match-peek-immediate', 'regexp-match-peek-positions',
|
||
|
'regexp-match-peek-positions-immediate',
|
||
|
'regexp-match-peek-positions-immediate/end',
|
||
|
'regexp-match-peek-positions/end', 'regexp-match-positions',
|
||
|
'regexp-match-positions/end', 'regexp-match/end', 'regexp-match?',
|
||
|
'regexp-max-lookbehind', 'regexp-quote', 'regexp-replace',
|
||
|
'regexp-replace*', 'regexp-replace-quote', 'regexp-replaces',
|
||
|
'regexp-split', 'regexp-try-match', 'regexp?', 'relative-path?',
|
||
|
'remainder', 'remove', 'remove*', 'remq', 'remq*', 'remv', 'remv*',
|
||
|
'rename-file-or-directory', 'rename-transformer-target',
|
||
|
'rename-transformer?', 'reroot-path', 'resolve-path',
|
||
|
'resolved-module-path-name', 'resolved-module-path?', 'reverse',
|
||
|
'round', 'seconds->date', 'security-guard?',
|
||
|
'semaphore-peek-evt', 'semaphore-peek-evt?', 'semaphore-post',
|
||
|
'semaphore-try-wait?', 'semaphore-wait',
|
||
|
'semaphore-wait/enable-break', 'semaphore?', 'sequence->stream',
|
||
|
'sequence-generate', 'sequence-generate*', 'sequence?',
|
||
|
'set!-transformer-procedure', 'set!-transformer?', 'set-box!',
|
||
|
'set-mcar!', 'set-mcdr!', 'set-phantom-bytes!',
|
||
|
'set-port-next-location!', 'shared-bytes', 'shell-execute',
|
||
|
'simplify-path', 'sin', 'single-flonum?', 'sleep',
|
||
|
'special-comment-value', 'special-comment?', 'split-path', 'sqrt',
|
||
|
'srcloc-column', 'srcloc-line', 'srcloc-position', 'srcloc-source',
|
||
|
'srcloc-span', 'srcloc?', 'stop-after', 'stop-before', 'string',
|
||
|
'string>=?', 'string>?', 'string<=?', 'string<?',
|
||
|
'string->bytes/latin-1', 'string->bytes/locale',
|
||
|
'string->bytes/utf-8', 'string->immutable-string',
|
||
|
'string->keyword', 'string->list', 'string->number',
|
||
|
'string->path', 'string->path-element', 'string->symbol',
|
||
|
'string->uninterned-symbol', 'string->unreadable-symbol',
|
||
|
'string-append', 'string-ci>=?', 'string-ci>?',
|
||
|
'string-ci<=?', 'string-ci<?', 'string-ci=?', 'string-copy',
|
||
|
'string-copy!', 'string-downcase', 'string-fill!',
|
||
|
'string-foldcase', 'string-length', 'string-locale>?',
|
||
|
'string-locale<?', 'string-locale-ci>?',
|
||
|
'string-locale-ci<?', 'string-locale-ci=?',
|
||
|
'string-locale-downcase', 'string-locale-upcase',
|
||
|
'string-locale=?', 'string-normalize-nfc', 'string-normalize-nfd',
|
||
|
'string-normalize-nfkc', 'string-normalize-nfkd', 'string-ref',
|
||
|
'string-set!', 'string-titlecase', 'string-upcase',
|
||
|
'string-utf-8-length', 'string=?', 'string?', 'struct->vector',
|
||
|
'struct-accessor-procedure?', 'struct-constructor-procedure?',
|
||
|
'struct-info', 'struct-mutator-procedure?',
|
||
|
'struct-predicate-procedure?', 'struct-type-info',
|
||
|
'struct-type-make-constructor', 'struct-type-make-predicate',
|
||
|
'struct-type-property-accessor-procedure?',
|
||
|
'struct-type-property?', 'struct-type?', 'struct:arity-at-least',
|
||
|
'struct:date', 'struct:date*', 'struct:exn', 'struct:exn:break',
|
||
|
'struct:exn:break:hang-up', 'struct:exn:break:terminate',
|
||
|
'struct:exn:fail', 'struct:exn:fail:contract',
|
||
|
'struct:exn:fail:contract:arity',
|
||
|
'struct:exn:fail:contract:continuation',
|
||
|
'struct:exn:fail:contract:divide-by-zero',
|
||
|
'struct:exn:fail:contract:non-fixnum-result',
|
||
|
'struct:exn:fail:contract:variable', 'struct:exn:fail:filesystem',
|
||
|
'struct:exn:fail:filesystem:errno',
|
||
|
'struct:exn:fail:filesystem:exists',
|
||
|
'struct:exn:fail:filesystem:version', 'struct:exn:fail:network',
|
||
|
'struct:exn:fail:network:errno', 'struct:exn:fail:out-of-memory',
|
||
|
'struct:exn:fail:read', 'struct:exn:fail:read:eof',
|
||
|
'struct:exn:fail:read:non-char', 'struct:exn:fail:syntax',
|
||
|
'struct:exn:fail:syntax:unbound', 'struct:exn:fail:unsupported',
|
||
|
'struct:exn:fail:user', 'struct:srcloc', 'struct?', 'sub1',
|
||
|
'subbytes', 'subprocess', 'subprocess-group-enabled',
|
||
|
'subprocess-kill', 'subprocess-pid', 'subprocess-status',
|
||
|
'subprocess-wait', 'subprocess?', 'substring', 'symbol->string',
|
||
|
'symbol-interned?', 'symbol-unreadable?', 'symbol?', 'sync',
|
||
|
'sync/enable-break', 'sync/timeout', 'sync/timeout/enable-break',
|
||
|
'syntax->datum', 'syntax->list', 'syntax-arm',
|
||
|
'syntax-column', 'syntax-disarm', 'syntax-e', 'syntax-line',
|
||
|
'syntax-local-bind-syntaxes', 'syntax-local-certifier',
|
||
|
'syntax-local-context', 'syntax-local-expand-expression',
|
||
|
'syntax-local-get-shadower', 'syntax-local-introduce',
|
||
|
'syntax-local-lift-context', 'syntax-local-lift-expression',
|
||
|
'syntax-local-lift-module-end-declaration',
|
||
|
'syntax-local-lift-provide', 'syntax-local-lift-require',
|
||
|
'syntax-local-lift-values-expression',
|
||
|
'syntax-local-make-definition-context',
|
||
|
'syntax-local-make-delta-introducer',
|
||
|
'syntax-local-module-defined-identifiers',
|
||
|
'syntax-local-module-exports',
|
||
|
'syntax-local-module-required-identifiers', 'syntax-local-name',
|
||
|
'syntax-local-phase-level', 'syntax-local-submodules',
|
||
|
'syntax-local-transforming-module-provides?', 'syntax-local-value',
|
||
|
'syntax-local-value/immediate', 'syntax-original?',
|
||
|
'syntax-position', 'syntax-property',
|
||
|
'syntax-property-symbol-keys', 'syntax-protect', 'syntax-rearm',
|
||
|
'syntax-recertify', 'syntax-shift-phase-level', 'syntax-source',
|
||
|
'syntax-source-module', 'syntax-span', 'syntax-taint',
|
||
|
'syntax-tainted?', 'syntax-track-origin',
|
||
|
'syntax-transforming-module-expression?', 'syntax-transforming?',
|
||
|
'syntax?', 'system-big-endian?', 'system-idle-evt',
|
||
|
'system-language+country', 'system-library-subpath',
|
||
|
'system-path-convention-type', 'system-type', 'tan',
|
||
|
'terminal-port?', 'thread', 'thread-cell-ref', 'thread-cell-set!',
|
||
|
'thread-cell-values?', 'thread-cell?', 'thread-dead-evt',
|
||
|
'thread-dead?', 'thread-group?', 'thread-receive',
|
||
|
'thread-receive-evt', 'thread-resume', 'thread-resume-evt',
|
||
|
'thread-rewind-receive', 'thread-running?', 'thread-send',
|
||
|
'thread-suspend', 'thread-suspend-evt', 'thread-try-receive',
|
||
|
'thread-wait', 'thread/suspend-to-kill', 'thread?', 'time-apply',
|
||
|
'truncate', 'unbox', 'uncaught-exception-handler',
|
||
|
'use-collection-link-paths', 'use-compiled-file-paths',
|
||
|
'use-user-specific-search-paths', 'values',
|
||
|
'variable-reference->empty-namespace',
|
||
|
'variable-reference->module-base-phase',
|
||
|
'variable-reference->module-declaration-inspector',
|
||
|
'variable-reference->module-path-index',
|
||
|
'variable-reference->module-source',
|
||
|
'variable-reference->namespace', 'variable-reference->phase',
|
||
|
'variable-reference->resolved-module-path',
|
||
|
'variable-reference-constant?', 'variable-reference?', 'vector',
|
||
|
'vector->immutable-vector', 'vector->list',
|
||
|
'vector->pseudo-random-generator',
|
||
|
'vector->pseudo-random-generator!', 'vector->values',
|
||
|
'vector-copy!', 'vector-fill!', 'vector-immutable',
|
||
|
'vector-length', 'vector-ref', 'vector-set!',
|
||
|
'vector-set-performance-stats!', 'vector?', 'version', 'void',
|
||
|
'void?', 'weak-box-value', 'weak-box?', 'will-execute',
|
||
|
'will-executor?', 'will-register', 'will-try-execute', 'wrap-evt',
|
||
|
'write', 'write-byte', 'write-bytes', 'write-bytes-avail',
|
||
|
'write-bytes-avail*', 'write-bytes-avail-evt',
|
||
|
'write-bytes-avail/enable-break', 'write-char', 'write-special',
|
||
|
'write-special-avail*', 'write-special-evt', 'write-string',
|
||
|
'zero?',
|
||
|
),
|
||
|
|
||
|
2 => array(
|
||
|
'#%app', '#%datum', '#%expression', '#%module-begin', '#%plain-app',
|
||
|
'#%plain-lambda', '#%plain-module-begin', '#%provide', '#%require',
|
||
|
'#%stratified-body', '#%top', '#%top-interaction',
|
||
|
'#%variable-reference', ':do-in', 'all-defined-out',
|
||
|
'all-from-out', 'and', 'apply', 'arity-at-least', 'begin',
|
||
|
'begin-for-syntax', 'begin0', 'call-with-input-file',
|
||
|
'call-with-input-file*', 'call-with-output-file',
|
||
|
'call-with-output-file*', 'case', 'case-lambda', 'combine-in',
|
||
|
'combine-out', 'cond', 'date', 'date*', 'define',
|
||
|
'define-for-syntax', 'define-logger', 'define-namespace-anchor',
|
||
|
'define-sequence-syntax', 'define-struct', 'define-struct/derived',
|
||
|
'define-syntax', 'define-syntax-rule', 'define-syntaxes',
|
||
|
'define-values', 'define-values-for-syntax', 'do', 'else',
|
||
|
'except-in', 'except-out', 'exn', 'exn:break', 'exn:break:hang-up',
|
||
|
'exn:break:terminate', 'exn:fail', 'exn:fail:contract',
|
||
|
'exn:fail:contract:arity', 'exn:fail:contract:continuation',
|
||
|
'exn:fail:contract:divide-by-zero',
|
||
|
'exn:fail:contract:non-fixnum-result',
|
||
|
'exn:fail:contract:variable', 'exn:fail:filesystem',
|
||
|
'exn:fail:filesystem:errno', 'exn:fail:filesystem:exists',
|
||
|
'exn:fail:filesystem:version', 'exn:fail:network',
|
||
|
'exn:fail:network:errno', 'exn:fail:out-of-memory',
|
||
|
'exn:fail:read', 'exn:fail:read:eof', 'exn:fail:read:non-char',
|
||
|
'exn:fail:syntax', 'exn:fail:syntax:unbound',
|
||
|
'exn:fail:unsupported', 'exn:fail:user', 'file', 'for', 'for*',
|
||
|
'for*/and', 'for*/first', 'for*/fold', 'for*/fold/derived',
|
||
|
'for*/hash', 'for*/hasheq', 'for*/hasheqv', 'for*/last',
|
||
|
'for*/list', 'for*/lists', 'for*/or', 'for*/product', 'for*/sum',
|
||
|
'for*/vector', 'for-label', 'for-meta', 'for-syntax',
|
||
|
'for-template', 'for/and', 'for/first', 'for/fold',
|
||
|
'for/fold/derived', 'for/hash', 'for/hasheq', 'for/hasheqv',
|
||
|
'for/last', 'for/list', 'for/lists', 'for/or', 'for/product',
|
||
|
'for/sum', 'for/vector', 'gen:custom-write', 'gen:equal+hash',
|
||
|
'if', 'in-bytes', 'in-bytes-lines', 'in-indexed',
|
||
|
'in-input-port-bytes', 'in-input-port-chars', 'in-lines',
|
||
|
'in-list', 'in-mlist', 'in-naturals', 'in-port', 'in-producer',
|
||
|
'in-range', 'in-string', 'in-value', 'in-vector', 'lambda', 'let',
|
||
|
'let*', 'let*-values', 'let-syntax', 'let-syntaxes', 'let-values',
|
||
|
'let/cc', 'let/ec', 'letrec', 'letrec-syntax', 'letrec-syntaxes',
|
||
|
'letrec-syntaxes+values', 'letrec-values', 'lib', 'local-require',
|
||
|
'log-debug', 'log-error', 'log-fatal', 'log-info', 'log-warning',
|
||
|
'module', 'module*', 'module+', 'only-in', 'only-meta-in',
|
||
|
'open-input-file', 'open-input-output-file', 'open-output-file',
|
||
|
'or', 'parameterize', 'parameterize*', 'parameterize-break',
|
||
|
'planet', 'prefix-in', 'prefix-out', 'protect-out', 'provide',
|
||
|
'quasiquote', 'quasisyntax', 'quasisyntax/loc', 'quote',
|
||
|
'quote-syntax', 'quote-syntax/prune', 'regexp-match*',
|
||
|
'regexp-match-peek-positions*', 'regexp-match-positions*',
|
||
|
'relative-in', 'rename-in', 'rename-out', 'require', 'set!',
|
||
|
'set!-values', 'sort', 'srcloc', 'struct', 'struct-copy',
|
||
|
'struct-field-index', 'struct-out', 'submod', 'syntax',
|
||
|
'syntax-case', 'syntax-case*', 'syntax-id-rules', 'syntax-rules',
|
||
|
'syntax/loc', 'time', 'unless', 'unquote', 'unquote-splicing',
|
||
|
'unsyntax', 'unsyntax-splicing', 'when', 'with-continuation-mark',
|
||
|
'with-handlers', 'with-handlers*', 'with-input-from-file',
|
||
|
'with-output-to-file', 'with-syntax', 'λ',
|
||
|
),
|
||
|
|
||
|
3 => array(
|
||
|
'>/c', '</c', 'append*', 'append-map', 'argmax', 'argmin',
|
||
|
'bad-number-of-results', 'base->-doms/c', 'base->-rngs/c',
|
||
|
'base->?', 'blame-add-unknown-context', 'blame-context',
|
||
|
'blame-contract', 'blame-fmt->-string', 'blame-negative',
|
||
|
'blame-original?', 'blame-positive', 'blame-replace-negative',
|
||
|
'blame-source', 'blame-swap', 'blame-swapped?', 'blame-value',
|
||
|
'blame?', 'boolean=?', 'build-chaperone-contract-property',
|
||
|
'build-compound-type-name', 'build-contract-property',
|
||
|
'build-flat-contract-property', 'bytes-append*', 'bytes-join',
|
||
|
'bytes-no-nuls?', 'call-with-input-bytes',
|
||
|
'call-with-input-string', 'call-with-output-bytes',
|
||
|
'call-with-output-string', 'chaperone-contract-property?',
|
||
|
'chaperone-contract?', 'class->interface', 'class-info',
|
||
|
'class?', 'coerce-chaperone-contract',
|
||
|
'coerce-chaperone-contracts', 'coerce-contract',
|
||
|
'coerce-contract/f', 'coerce-contracts', 'coerce-flat-contract',
|
||
|
'coerce-flat-contracts', 'conjugate', 'cons?', 'const',
|
||
|
'contract-first-order', 'contract-first-order-passes?',
|
||
|
'contract-name', 'contract-proc', 'contract-projection',
|
||
|
'contract-property?', 'contract-random-generate',
|
||
|
'contract-stronger?', 'contract-struct-exercise',
|
||
|
'contract-struct-generate', 'contract?', 'convert-stream',
|
||
|
'copy-directory/files', 'copy-port', 'cosh', 'count',
|
||
|
'current-blame-format', 'current-future', 'curry', 'curryr',
|
||
|
'degrees->radians', 'delete-directory/files',
|
||
|
'deserialize-info:set-v0', 'dict-iter-contract',
|
||
|
'dict-key-contract', 'dict-value-contract', 'drop', 'drop-right',
|
||
|
'dup-input-port', 'dup-output-port', 'dynamic-get-field',
|
||
|
'dynamic-send', 'dynamic-set-field!', 'eighth', 'empty',
|
||
|
'empty-sequence', 'empty-stream', 'empty?', 'env-stash',
|
||
|
'eq-contract-val', 'eq-contract?', 'equal<%>',
|
||
|
'equal-contract-val', 'equal-contract?', 'exact-ceiling',
|
||
|
'exact-floor', 'exact-round', 'exact-truncate',
|
||
|
'exn:fail:contract:blame-object', 'exn:fail:contract:blame?',
|
||
|
'exn:fail:object?', 'exn:misc:match?', 'explode-path',
|
||
|
'externalizable<%>', 'false', 'false/c', 'false?',
|
||
|
'field-names', 'fifth', 'file-name-from-path',
|
||
|
'filename-extension', 'filter-map', 'filter-not',
|
||
|
'filter-read-input-port', 'find-files', 'first', 'flat-contract',
|
||
|
'flat-contract-predicate', 'flat-contract-property?',
|
||
|
'flat-contract?', 'flat-named-contract', 'flatten', 'fold-files',
|
||
|
'force', 'fourth', 'fsemaphore-count', 'fsemaphore-post',
|
||
|
'fsemaphore-try-wait?', 'fsemaphore-wait', 'fsemaphore?', 'future',
|
||
|
'future?', 'futures-enabled?', 'generate-ctc-fail?',
|
||
|
'generate-env', 'generate-member-key', 'generate/choose',
|
||
|
'generate/direct', 'generic?', 'group-execute-bit',
|
||
|
'group-read-bit', 'group-write-bit', 'has-contract?', 'identity',
|
||
|
'impersonator-contract?', 'impersonator-prop:contracted',
|
||
|
'implementation?', 'implementation?/c', 'in-dict', 'in-dict-keys',
|
||
|
'in-dict-pairs', 'in-dict-values', 'infinite?',
|
||
|
'input-port-append', 'instanceof/c', 'interface->method-names',
|
||
|
'interface-extension?', 'interface?', 'is-a?', 'is-a?/c', 'last',
|
||
|
'last-pair', 'list->set', 'list->seteq', 'list->seteqv',
|
||
|
'make-chaperone-contract', 'make-contract', 'make-custom-hash',
|
||
|
'make-directory*', 'make-exn:fail:contract:blame',
|
||
|
'make-exn:fail:object', 'make-flat-contract', 'make-fsemaphore',
|
||
|
'make-generate-ctc-fail', 'make-generic',
|
||
|
'make-immutable-custom-hash', 'make-input-port/read-to-peek',
|
||
|
'make-limited-input-port', 'make-list', 'make-lock-file-name',
|
||
|
'make-mixin-contract', 'make-none/c', 'make-pipe-with-specials',
|
||
|
'make-primitive-class', 'make-proj-contract',
|
||
|
'make-tentative-pretty-print-output-port', 'make-weak-custom-hash',
|
||
|
'match-equality-test', 'matches-arity-exactly?',
|
||
|
'member-name-key-hash-code', 'member-name-key=?',
|
||
|
'member-name-key?', 'merge-input', 'method-in-interface?',
|
||
|
'mixin-contract', 'n->th', 'nan?', 'natural-number/c', 'negate',
|
||
|
'new-∀/c', 'new-∃/c', 'ninth', 'normalize-path', 'object%',
|
||
|
'object->vector', 'object-info', 'object-interface',
|
||
|
'object-method-arity-includes?', 'object=?', 'object?',
|
||
|
'open-output-nowhere', 'order-of-magnitude', 'other-execute-bit',
|
||
|
'other-read-bit', 'other-write-bit', 'parse-command-line',
|
||
|
'partition', 'path-element?', 'path-only', 'pathlist-closure',
|
||
|
'pi', 'pi.f', 'place-break', 'place-channel', 'place-channel-get',
|
||
|
'place-channel-put', 'place-channel-put/get', 'place-channel?',
|
||
|
'place-dead-evt', 'place-enabled?', 'place-kill',
|
||
|
'place-message-allowed?', 'place-sleep', 'place-wait', 'place?',
|
||
|
'port->bytes', 'port->list', 'port->string',
|
||
|
'predicate/c', 'preferences-lock-file-mode', 'pretty-display',
|
||
|
'pretty-format', 'pretty-print',
|
||
|
'pretty-print-.-symbol-without-bars',
|
||
|
'pretty-print-abbreviate-read-macros', 'pretty-print-columns',
|
||
|
'pretty-print-current-style-table', 'pretty-print-depth',
|
||
|
'pretty-print-exact-as-decimal', 'pretty-print-extend-style-table',
|
||
|
'pretty-print-handler', 'pretty-print-newline',
|
||
|
'pretty-print-post-print-hook', 'pretty-print-pre-print-hook',
|
||
|
'pretty-print-print-hook', 'pretty-print-print-line',
|
||
|
'pretty-print-remap-stylable', 'pretty-print-show-inexactness',
|
||
|
'pretty-print-size-hook', 'pretty-print-style-table?',
|
||
|
'pretty-printing', 'pretty-write', 'printable<%>',
|
||
|
'printable/c', 'process', 'process*', 'process*/ports',
|
||
|
'process/ports', 'processor-count', 'promise-forced?',
|
||
|
'promise-running?', 'promise?', 'prop:chaperone-contract',
|
||
|
'prop:contract', 'prop:contracted', 'prop:dict',
|
||
|
'prop:flat-contract', 'prop:opt-chaperone-contract',
|
||
|
'prop:opt-chaperone-contract-get-test',
|
||
|
'prop:opt-chaperone-contract?', 'prop:stream', 'proper-subset?',
|
||
|
'put-preferences', 'radians->degrees', 'raise-blame-error',
|
||
|
'raise-contract-error', 'range', 'reencode-input-port',
|
||
|
'reencode-output-port', 'relocate-input-port',
|
||
|
'relocate-output-port', 'rest', 'second', 'sequence->list',
|
||
|
'sequence-add-between', 'sequence-andmap', 'sequence-append',
|
||
|
'sequence-count', 'sequence-filter', 'sequence-fold',
|
||
|
'sequence-for-each', 'sequence-length', 'sequence-map',
|
||
|
'sequence-ormap', 'sequence-ref', 'sequence-tail', 'set',
|
||
|
'set->list', 'set-add', 'set-count', 'set-empty?', 'set-eq?',
|
||
|
'set-equal?', 'set-eqv?', 'set-first', 'set-for-each',
|
||
|
'set-intersect', 'set-map', 'set-member?', 'set-remove',
|
||
|
'set-rest', 'set-subtract', 'set-symmetric-difference',
|
||
|
'set-union', 'set/c', 'set=?', 'set?', 'seteq', 'seteqv',
|
||
|
'seventh', 'sgn', 'shuffle', 'simple-form-path', 'sinh', 'sixth',
|
||
|
'skip-projection-wrapper?', 'some-system-path->string',
|
||
|
'special-filter-input-port', 'split-at', 'split-at-right', 'sqr',
|
||
|
'stream->list', 'stream-add-between', 'stream-andmap',
|
||
|
'stream-append', 'stream-count', 'stream-empty?', 'stream-filter',
|
||
|
'stream-first', 'stream-fold', 'stream-for-each', 'stream-length',
|
||
|
'stream-map', 'stream-ormap', 'stream-ref', 'stream-rest',
|
||
|
'stream-tail', 'stream?', 'string->some-system-path',
|
||
|
'string-append*', 'string-no-nuls?', 'struct-type-property/c',
|
||
|
'struct:exn:fail:contract:blame', 'struct:exn:fail:object',
|
||
|
'subclass?', 'subclass?/c', 'subset?', 'symbol=?', 'system',
|
||
|
'system*', 'system*/exit-code', 'system/exit-code', 'take',
|
||
|
'take-right', 'tanh', 'tcp-abandon-port', 'tcp-accept',
|
||
|
'tcp-accept-evt', 'tcp-accept-ready?', 'tcp-accept/enable-break',
|
||
|
'tcp-addresses', 'tcp-close', 'tcp-connect',
|
||
|
'tcp-connect/enable-break', 'tcp-listen', 'tcp-listener?',
|
||
|
'tcp-port?', 'tentative-pretty-print-port-cancel',
|
||
|
'tentative-pretty-print-port-transfer', 'tenth',
|
||
|
'the-unsupplied-arg', 'third', 'touch', 'transplant-input-port',
|
||
|
'transplant-output-port', 'true', 'udp-addresses', 'udp-bind!',
|
||
|
'udp-bound?', 'udp-close', 'udp-connect!', 'udp-connected?',
|
||
|
'udp-open-socket', 'udp-receive!', 'udp-receive!*',
|
||
|
'udp-receive!-evt', 'udp-receive!/enable-break',
|
||
|
'udp-receive-ready-evt', 'udp-send', 'udp-send*', 'udp-send-evt',
|
||
|
'udp-send-ready-evt', 'udp-send-to', 'udp-send-to*',
|
||
|
'udp-send-to-evt', 'udp-send-to/enable-break',
|
||
|
'udp-send/enable-break', 'udp?', 'unit?', 'unsupplied-arg?',
|
||
|
'user-execute-bit', 'user-read-bit', 'user-write-bit',
|
||
|
'value-contract', 'vector-append', 'vector-argmax',
|
||
|
'vector-argmin', 'vector-copy', 'vector-count', 'vector-drop',
|
||
|
'vector-drop-right', 'vector-filter', 'vector-filter-not',
|
||
|
'vector-map', 'vector-map!', 'vector-member', 'vector-memq',
|
||
|
'vector-memv', 'vector-set*!', 'vector-split-at',
|
||
|
'vector-split-at-right', 'vector-take', 'vector-take-right',
|
||
|
'with-input-from-bytes', 'with-input-from-string',
|
||
|
'with-output-to-bytes', 'with-output-to-string', 'would-be-future',
|
||
|
'writable<%>', 'xor',
|
||
|
),
|
||
|
4 => array(
|
||
|
'>=/c', '<=/c', '->*m', '->d', '->dm', '->i', '->m',
|
||
|
'=/c', 'absent', 'abstract', 'add-between', 'and/c', 'any',
|
||
|
'any/c', 'augment', 'augment*', 'augment-final', 'augment-final*',
|
||
|
'augride', 'augride*', 'between/c', 'blame-add-context',
|
||
|
'box-immutable/c', 'box/c', 'call-with-file-lock/timeout',
|
||
|
'case->', 'case->m', 'class', 'class*',
|
||
|
'class-field-accessor', 'class-field-mutator', 'class/c',
|
||
|
'class/derived', 'command-line', 'compound-unit',
|
||
|
'compound-unit/infer', 'cons/c', 'continuation-mark-key/c',
|
||
|
'contract', 'contract-out', 'contract-struct', 'contracted',
|
||
|
'current-contract-region', 'define-compound-unit',
|
||
|
'define-compound-unit/infer', 'define-contract-struct',
|
||
|
'define-local-member-name', 'define-match-expander',
|
||
|
'define-member-name', 'define-opt/c', 'define-serializable-class',
|
||
|
'define-serializable-class*', 'define-signature',
|
||
|
'define-signature-form', 'define-struct/contract', 'define-unit',
|
||
|
'define-unit-binding', 'define-unit-from-context',
|
||
|
'define-unit/contract', 'define-unit/new-import-export',
|
||
|
'define-unit/s', 'define-values-for-export',
|
||
|
'define-values/invoke-unit', 'define-values/invoke-unit/infer',
|
||
|
'define/augment', 'define/augment-final', 'define/augride',
|
||
|
'define/contract', 'define/final-prop', 'define/match',
|
||
|
'define/overment', 'define/override', 'define/override-final',
|
||
|
'define/private', 'define/public', 'define/public-final',
|
||
|
'define/pubment', 'define/subexpression-pos-prop', 'delay',
|
||
|
'delay/idle', 'delay/name', 'delay/strict', 'delay/sync',
|
||
|
'delay/thread', 'dict->list', 'dict-can-functional-set?',
|
||
|
'dict-can-remove-keys?', 'dict-count', 'dict-for-each',
|
||
|
'dict-has-key?', 'dict-iterate-first', 'dict-iterate-key',
|
||
|
'dict-iterate-next', 'dict-iterate-value', 'dict-keys', 'dict-map',
|
||
|
'dict-mutable?', 'dict-ref', 'dict-ref!', 'dict-remove',
|
||
|
'dict-remove!', 'dict-set', 'dict-set!', 'dict-set*', 'dict-set*!',
|
||
|
'dict-update', 'dict-update!', 'dict-values', 'dict?',
|
||
|
'display-lines', 'display-lines-to-file', 'display-to-file',
|
||
|
'dynamic-place', 'dynamic-place*', 'eof-evt', 'except',
|
||
|
'exn:fail:contract:blame', 'exn:fail:object', 'export', 'extends',
|
||
|
'field', 'field-bound?', 'file->bytes', 'file->bytes-lines',
|
||
|
'file->lines', 'file->list', 'file->string',
|
||
|
'file->value', 'find-relative-path', 'flat-murec-contract',
|
||
|
'flat-rec-contract', 'for*/set', 'for*/seteq', 'for*/seteqv',
|
||
|
'for/set', 'for/seteq', 'for/seteqv', 'gen:dict', 'gen:stream',
|
||
|
'generic', 'get-field', 'get-preference', 'hash/c', 'implies',
|
||
|
'import', 'in-set', 'in-stream', 'include',
|
||
|
'include-at/relative-to', 'include-at/relative-to/reader',
|
||
|
'include/reader', 'inherit', 'inherit-field', 'inherit/inner',
|
||
|
'inherit/super', 'init', 'init-depend', 'init-field', 'init-rest',
|
||
|
'inner', 'inspect', 'instantiate', 'integer-in', 'interface',
|
||
|
'interface*', 'invoke-unit', 'invoke-unit/infer', 'lazy', 'link',
|
||
|
'list/c', 'listof', 'local', 'make-handle-get-preference-locked',
|
||
|
'make-object', 'make-temporary-file', 'match', 'match*',
|
||
|
'match*/derived', 'match-define', 'match-define-values',
|
||
|
'match-lambda', 'match-lambda*', 'match-lambda**', 'match-let',
|
||
|
'match-let*', 'match-let*-values', 'match-let-values',
|
||
|
'match-letrec', 'match/derived', 'match/values', 'member-name-key',
|
||
|
'method-contract?', 'mixin', 'nand', 'new', 'non-empty-listof',
|
||
|
'none/c', 'nor', 'not/c', 'object-contract', 'object/c',
|
||
|
'one-of/c', 'only', 'open', 'opt/c', 'or/c', 'overment',
|
||
|
'overment*', 'override', 'override*', 'override-final',
|
||
|
'override-final*', 'parameter/c', 'parametric->/c',
|
||
|
'peek-bytes!-evt', 'peek-bytes-avail!-evt', 'peek-bytes-evt',
|
||
|
'peek-string!-evt', 'peek-string-evt', 'peeking-input-port',
|
||
|
'place', 'place*', 'port->bytes-lines', 'port->lines',
|
||
|
'prefix', 'private', 'private*', 'procedure-arity-includes/c',
|
||
|
'promise/c', 'prompt-tag/c', 'prop:dict/contract',
|
||
|
'provide-signature-elements', 'provide/contract', 'public',
|
||
|
'public*', 'public-final', 'public-final*', 'pubment', 'pubment*',
|
||
|
'read-bytes!-evt', 'read-bytes-avail!-evt', 'read-bytes-evt',
|
||
|
'read-bytes-line-evt', 'read-line-evt', 'read-string!-evt',
|
||
|
'read-string-evt', 'real-in', 'recursive-contract',
|
||
|
'regexp-match-evt', 'remove-duplicates', 'rename', 'rename-inner',
|
||
|
'rename-super', 'send', 'send*', 'send+', 'send-generic',
|
||
|
'send/apply', 'send/keyword-apply', 'set-field!', 'shared',
|
||
|
'stream', 'stream-cons', 'string-join', 'string-len/c',
|
||
|
'string-normalize-spaces', 'string-replace', 'string-split',
|
||
|
'string-trim', 'struct*', 'struct/c', 'struct/ctc', 'struct/dc',
|
||
|
'super', 'super-instantiate', 'super-make-object', 'super-new',
|
||
|
'symbols', 'syntax/c', 'tag', 'this', 'this%', 'thunk', 'thunk*',
|
||
|
'unconstrained-domain->', 'unit', 'unit-from-context', 'unit/c',
|
||
|
'unit/new-import-export', 'unit/s', 'vector-immutable/c',
|
||
|
'vector-immutableof', 'vector/c', 'vectorof', 'with-contract',
|
||
|
'with-method', 'write-to-file', '~.a', '~.s', '~.v', '~a', '~e',
|
||
|
'~r', '~s', '~v',
|
||
|
),
|
||
|
),
|
||
|
'SYMBOLS' => array(
|
||
|
0 => array(
|
||
|
'>', '>=', '<', '<=', '*', '+', '-', '->', '->*', '...', '/',
|
||
|
'=', '=>', '==', '_', '#fl', '#fx', '#s', '#', '#f', '#F',
|
||
|
'#false', '#t', '#T', '#true', '#lang', '#reader', '.', '\'', '#`',
|
||
|
'#,@', '#,', '#\'', '`', '@', ',', '#%', '#$', '#&', '#~', '#rx',
|
||
|
'#px', '#<<', '#;', '#hash', '#',
|
||
|
),
|
||
|
),
|
||
|
'CASE_SENSITIVE' => array(
|
||
|
GESHI_COMMENTS => false,
|
||
|
1 => false,
|
||
|
2 => false,
|
||
|
3 => false,
|
||
|
4 => false,
|
||
|
),
|
||
|
'NUMBERS' => array(
|
||
|
1 => '(((#x#e)|(#e#x)|(#x#i)|(#i#x)|(#x))((((((((((((-)|(\+)))?(((('.
|
||
|
'(([0-9])+)?(\.)?(([0-9a-fA-F])+(#)*)))|(((([0-9a-fA-F])+(#)*)'.
|
||
|
'(\.)?(#)*))|(((([0-9a-fA-F])+(#)*)\\/(([0-9a-fA-F])+(#)*))))('.
|
||
|
'([sl]((((-)|(\+)))?([0-9])+)))?)))|((((-)|(\+))(((inf\.)|(nan'.
|
||
|
'\.))[0f])))))?((-)|(\+))(((((((([0-9])+)?(\.)?(([0-9a-fA-F])+'.
|
||
|
'(#)*)))|(((([0-9a-fA-F])+(#)*)(\.)?(#)*))|(((([0-9a-fA-F])+(#'.
|
||
|
')*)\\/(([0-9a-fA-F])+(#)*))))(([sl]((((-)|(\+)))?([0-9])+)))?'.
|
||
|
'))|((((inf\.)|(nan\.))[0f])))i))|((((((((-)|(\+)))?(((((([0-9'.
|
||
|
'])+)?(\.)?(([0-9a-fA-F])+(#)*)))|(((([0-9a-fA-F])+(#)*)(\.)?('.
|
||
|
'#)*))|(((([0-9a-fA-F])+(#)*)\\/(([0-9a-fA-F])+(#)*))))(([sl]('.
|
||
|
'(((-)|(\+)))?([0-9])+)))?)))|((((-)|(\+))(((inf\.)|(nan\.))[0'.
|
||
|
'f]))))@((((((-)|(\+)))?(((((([0-9])+)?(\.)?(([0-9a-fA-F])+(#)'.
|
||
|
'*)))|(((([0-9a-fA-F])+(#)*)(\.)?(#)*))|(((([0-9a-fA-F])+(#)*)'.
|
||
|
'\\/(([0-9a-fA-F])+(#)*))))(([sl]((((-)|(\+)))?([0-9])+)))?)))'.
|
||
|
'|((((-)|(\+))(((inf\.)|(nan\.))[0f]))))))))|((((((-)|(\+)))?('.
|
||
|
'([0-9])+\\/([0-9])+))((-)|(\+))(([0-9])+\\/([0-9])+)i))|((((('.
|
||
|
'-)|(\+)))?(([0-9])+\\/([0-9])+)))|(((((((-)|(\+)))?(((((([0-9'.
|
||
|
'])+)?(\.)?(([0-9a-fA-F])+(#)*)))|(((([0-9a-fA-F])+(#)*)(\.)?('.
|
||
|
'#)*))|(((([0-9a-fA-F])+(#)*)\\/(([0-9a-fA-F])+(#)*))))(([sl]('.
|
||
|
'(((-)|(\+)))?([0-9])+)))?)))|((((-)|(\+))(((inf\.)|(nan\.))[0'.
|
||
|
'f])))))|(((((-)|(\+)))?([0-9])+))))',
|
||
|
2 => '(((#o#e)|(#e#o)|(#o#i)|(#i#o)|(#o))((((((((((((-)|(\+)))?(((('.
|
||
|
'(([0-9])+)?(\.)?(([0-7])+(#)*)))|(((([0-7])+(#)*)(\.)?(#)*))|'.
|
||
|
'(((([0-7])+(#)*)\\/(([0-7])+(#)*))))(((([sl])|([def]))((((-)|'.
|
||
|
'(\+)))?([0-9])+)))?)))|((((-)|(\+))(((inf\.)|(nan\.))[0f]))))'.
|
||
|
')?((-)|(\+))(((((((([0-9])+)?(\.)?(([0-7])+(#)*)))|(((([0-7])'.
|
||
|
'+(#)*)(\.)?(#)*))|(((([0-7])+(#)*)\\/(([0-7])+(#)*))))(((([sl'.
|
||
|
'])|([def]))((((-)|(\+)))?([0-9])+)))?))|((((inf\.)|(nan\.))[0'.
|
||
|
'f])))i))|((((((((-)|(\+)))?(((((([0-9])+)?(\.)?(([0-7])+(#)*)'.
|
||
|
'))|(((([0-7])+(#)*)(\.)?(#)*))|(((([0-7])+(#)*)\\/(([0-7])+(#'.
|
||
|
')*))))(((([sl])|([def]))((((-)|(\+)))?([0-9])+)))?)))|((((-)|'.
|
||
|
'(\+))(((inf\.)|(nan\.))[0f]))))@((((((-)|(\+)))?(((((([0-9])+'.
|
||
|
')?(\.)?(([0-7])+(#)*)))|(((([0-7])+(#)*)(\.)?(#)*))|(((([0-7]'.
|
||
|
')+(#)*)\\/(([0-7])+(#)*))))(((([sl])|([def]))((((-)|(\+)))?(['.
|
||
|
'0-9])+)))?)))|((((-)|(\+))(((inf\.)|(nan\.))[0f]))))))))|(((('.
|
||
|
'((-)|(\+)))?(([0-9])+\\/([0-9])+))((-)|(\+))(([0-9])+\\/([0-9'.
|
||
|
'])+)i))|(((((-)|(\+)))?(([0-9])+\\/([0-9])+)))|(((((((-)|(\+)'.
|
||
|
'))?(((((([0-9])+)?(\.)?(([0-7])+(#)*)))|(((([0-7])+(#)*)(\.)?'.
|
||
|
'(#)*))|(((([0-7])+(#)*)\\/(([0-7])+(#)*))))(((([sl])|([def]))'.
|
||
|
'((((-)|(\+)))?([0-9])+)))?)))|((((-)|(\+))(((inf\.)|(nan\.))['.
|
||
|
'0f])))))|(((((-)|(\+)))?([0-9])+))))',
|
||
|
3 => '(((#b#e)|(#e#b)|(#b#i)|(#i#b)|(#b))((((((((((((-)|(\+)))?(((('.
|
||
|
'(([0-9])+)?(\.)?(([0-1])+(#)*)))|(((([0-1])+(#)*)(\.)?(#)*))|'.
|
||
|
'(((([0-1])+(#)*)\\/(([0-1])+(#)*))))(((([sl])|([def]))((((-)|'.
|
||
|
'(\+)))?([0-9])+)))?)))|((((-)|(\+))(((inf\.)|(nan\.))[0f]))))'.
|
||
|
')?((-)|(\+))(((((((([0-9])+)?(\.)?(([0-1])+(#)*)))|(((([0-1])'.
|
||
|
'+(#)*)(\.)?(#)*))|(((([0-1])+(#)*)\\/(([0-1])+(#)*))))(((([sl'.
|
||
|
'])|([def]))((((-)|(\+)))?([0-9])+)))?))|((((inf\.)|(nan\.))[0'.
|
||
|
'f])))i))|((((((((-)|(\+)))?(((((([0-9])+)?(\.)?(([0-1])+(#)*)'.
|
||
|
'))|(((([0-1])+(#)*)(\.)?(#)*))|(((([0-1])+(#)*)\\/(([0-1])+(#'.
|
||
|
')*))))(((([sl])|([def]))((((-)|(\+)))?([0-9])+)))?)))|((((-)|'.
|
||
|
'(\+))(((inf\.)|(nan\.))[0f]))))@((((((-)|(\+)))?(((((([0-9])+'.
|
||
|
')?(\.)?(([0-1])+(#)*)))|(((([0-1])+(#)*)(\.)?(#)*))|(((([0-1]'.
|
||
|
')+(#)*)\\/(([0-1])+(#)*))))(((([sl])|([def]))((((-)|(\+)))?(['.
|
||
|
'0-9])+)))?)))|((((-)|(\+))(((inf\.)|(nan\.))[0f]))))))))|(((('.
|
||
|
'((-)|(\+)))?(([0-9])+\\/([0-9])+))((-)|(\+))(([0-9])+\\/([0-9'.
|
||
|
'])+)i))|(((((-)|(\+)))?(([0-9])+\\/([0-9])+)))|(((((((-)|(\+)'.
|
||
|
'))?(((((([0-9])+)?(\.)?(([0-1])+(#)*)))|(((([0-1])+(#)*)(\.)?'.
|
||
|
'(#)*))|(((([0-1])+(#)*)\\/(([0-1])+(#)*))))(((([sl])|([def]))'.
|
||
|
'((((-)|(\+)))?([0-9])+)))?)))|((((-)|(\+))(((inf\.)|(nan\.))['.
|
||
|
'0f])))))|(((((-)|(\+)))?([0-9])+))))',
|
||
|
4 => '((((#d#e)|(#e#d)|(#d#i)|(#i#d)|(#e)|(#i)|(#d)))?((((((((((((-'.
|
||
|
')|(\+)))?(((((([0-9])+)?(\.)?(([0-9])+(#)*)))|(((([0-9])+(#)*'.
|
||
|
')(\.)?(#)*))|(((([0-9])+(#)*)\\/(([0-9])+(#)*))))(((([sl])|(['.
|
||
|
'def]))((((-)|(\+)))?([0-9])+)))?)))|((((-)|(\+))(((inf\.)|(na'.
|
||
|
'n\.))[0f])))))?((-)|(\+))(((((((([0-9])+)?(\.)?(([0-9])+(#)*)'.
|
||
|
'))|(((([0-9])+(#)*)(\.)?(#)*))|(((([0-9])+(#)*)\\/(([0-9])+(#'.
|
||
|
')*))))(((([sl])|([def]))((((-)|(\+)))?([0-9])+)))?))|((((inf'.
|
||
|
'\.)|(nan\.))[0f])))i))|((((((((-)|(\+)))?(((((([0-9])+)?(\.)?'.
|
||
|
'(([0-9])+(#)*)))|(((([0-9])+(#)*)(\.)?(#)*))|(((([0-9])+(#)*)'.
|
||
|
'\\/(([0-9])+(#)*))))(((([sl])|([def]))((((-)|(\+)))?([0-9])+)'.
|
||
|
'))?)))|((((-)|(\+))(((inf\.)|(nan\.))[0f]))))@((((((-)|(\+)))'.
|
||
|
'?(((((([0-9])+)?(\.)?(([0-9])+(#)*)))|(((([0-9])+(#)*)(\.)?(#'.
|
||
|
')*))|(((([0-9])+(#)*)\\/(([0-9])+(#)*))))(((([sl])|([def]))(('.
|
||
|
'((-)|(\+)))?([0-9])+)))?)))|((((-)|(\+))(((inf\.)|(nan\.))[0f'.
|
||
|
']))))))))|((((((-)|(\+)))?(([0-9])+\\/([0-9])+))((-)|(\+))((['.
|
||
|
'0-9])+\\/([0-9])+)i))|(((((-)|(\+)))?(([0-9])+\\/([0-9])+)))|'.
|
||
|
'(((((((-)|(\+)))?(((((([0-9])+)?(\.)?(([0-9])+(#)*)))|(((([0-'.
|
||
|
'9])+(#)*)(\.)?(#)*))|(((([0-9])+(#)*)\\/(([0-9])+(#)*))))(((('.
|
||
|
'[sl])|([def]))((((-)|(\+)))?([0-9])+)))?)))|((((-)|(\+))(((in'.
|
||
|
'f\.)|(nan\.))[0f])))))|(((((-)|(\+)))?([0-9])+))))',
|
||
|
),
|
||
|
'STYLES' => array(
|
||
|
'KEYWORDS' => array(
|
||
|
1 => 'color: blue;',
|
||
|
2 => 'color: rgb(34, 34, 139);',
|
||
|
3 => 'color: blue;',
|
||
|
4 => 'color: rgb(34, 34, 139);',
|
||
|
),
|
||
|
'COMMENTS' => array(
|
||
|
1 => 'color: rgb(194, 116, 31);',
|
||
|
'MULTI' => 'color: rgb(194, 116, 31);',
|
||
|
),
|
||
|
'ESCAPE_CHAR' => array(
|
||
|
0 => '',
|
||
|
),
|
||
|
'BRACKETS' => array(
|
||
|
0 => 'color: rgb(132, 60,36);',
|
||
|
),
|
||
|
'STRINGS' => array(
|
||
|
0 => 'color: rgb(34, 139, 34);',
|
||
|
),
|
||
|
'NUMBERS' => array(
|
||
|
0 => 'color: rgb(34, 139, 34);',
|
||
|
1 => 'color: rgb(34, 139, 34);',
|
||
|
2 => 'color: rgb(34, 139, 34);',
|
||
|
3 => 'color: rgb(34, 139, 34);',
|
||
|
4 => 'color: rgb(34, 139, 34);',
|
||
|
),
|
||
|
'METHODS' => array(
|
||
|
0 => 'color: #202020;',
|
||
|
),
|
||
|
'SYMBOLS' => array(
|
||
|
0 => 'color: rgb(132, 60,36);',
|
||
|
),
|
||
|
'REGEXPS' => array(
|
||
|
1 => 'color: rgb(34, 139, 34);',
|
||
|
2 => 'color: rgb(132, 60,36);',
|
||
|
3 => 'color: rgb(34, 139, 34);',
|
||
|
),
|
||
|
'SCRIPT' => array(
|
||
|
),
|
||
|
),
|
||
|
'URLS' => array(
|
||
|
1 => 'http://docs.racket-lang.org/reference/',
|
||
|
2 => 'http://docs.racket-lang.org/reference/',
|
||
|
3 => 'http://docs.racket-lang.org/reference/',
|
||
|
4 => 'http://docs.racket-lang.org/reference/',
|
||
|
),
|
||
|
'OOLANG' => false,
|
||
|
'OBJECT_SPLITTERS' => array(
|
||
|
),
|
||
|
'REGEXPS' => array(
|
||
|
1 => '#\\\\(nul|null|backspace|tab|newline|linefeed|vtab|page|retur'.
|
||
|
'n|space|rubout|([0-7]{1,3})|(u[[:xdigit:]]{1,4})|(U[[:xdigit:'.
|
||
|
']]{1,6})|[a-z])',
|
||
|
2 => '#:[^[:space:]()[\\]{}",\']+',
|
||
|
3 => '\'((\\\\ )|([^[:space:]()[\\]{}",\']))+',
|
||
|
),
|
||
|
'STRICT_MODE_APPLIES' => GESHI_NEVER,
|
||
|
'SCRIPT_DELIMITERS' => array(
|
||
|
),
|
||
|
'HIGHLIGHT_STRICT_BLOCK' => array(
|
||
|
),
|
||
|
'PARSER_CONTROL' => array(
|
||
|
'KEYWORDS' => array(
|
||
|
'DISALLOWED_BEFORE' => '[[:space:]()[\\]{}",\']',
|
||
|
),
|
||
|
'ENABLE_FLAGS' => array(
|
||
|
'SYMBOLS' => GESHI_MAYBE,
|
||
|
'BRACKETS' => GESHI_MAYBE,
|
||
|
'REGEXPS' => GESHI_MAYBE,
|
||
|
'ESCAPE_CHAR' => GESHI_MAYBE,
|
||
|
)
|
||
|
)
|
||
|
);
|