eric6/ThirdParty/Pygments/pygments/lexers/lisp.py

changeset 7701
25f42e208e08
parent 7547
21b0534faebc
child 7983
54c5cfbb1e29
equal deleted inserted replaced
7700:a3cf077a8db3 7701:25f42e208e08
3 pygments.lexers.lisp 3 pygments.lexers.lisp
4 ~~~~~~~~~~~~~~~~~~~~ 4 ~~~~~~~~~~~~~~~~~~~~
5 5
6 Lexers for Lispy languages. 6 Lexers for Lispy languages.
7 7
8 :copyright: Copyright 2006-2019 by the Pygments team, see AUTHORS. 8 :copyright: Copyright 2006-2020 by the Pygments team, see AUTHORS.
9 :license: BSD, see LICENSE for details. 9 :license: BSD, see LICENSE for details.
10 """ 10 """
11 11
12 import re 12 import re
13 13
380 builtins = hy_builtins + hy_core 380 builtins = hy_builtins + hy_core
381 381
382 # valid names for identifiers 382 # valid names for identifiers
383 # well, names can only not consist fully of numbers 383 # well, names can only not consist fully of numbers
384 # but this should be good enough for now 384 # but this should be good enough for now
385 valid_name = r'(?!#)[\w!$%*+<=>?/.#-:]+' 385 valid_name = r'(?!#)[\w!$%*+<=>?/.#:-]+'
386 386
387 def _multi_escape(entries): 387 def _multi_escape(entries):
388 return words(entries, suffix=' ') 388 return words(entries, suffix=' ')
389 389
390 tokens = { 390 tokens = {
469 filenames = ['*.rkt', '*.rktd', '*.rktl'] 469 filenames = ['*.rkt', '*.rktd', '*.rktl']
470 mimetypes = ['text/x-racket', 'application/x-racket'] 470 mimetypes = ['text/x-racket', 'application/x-racket']
471 471
472 # Generated by example.rkt 472 # Generated by example.rkt
473 _keywords = ( 473 _keywords = (
474 u'#%app', u'#%datum', u'#%declare', u'#%expression', u'#%module-begin', 474 '#%app', '#%datum', '#%declare', '#%expression', '#%module-begin',
475 u'#%plain-app', u'#%plain-lambda', u'#%plain-module-begin', 475 '#%plain-app', '#%plain-lambda', '#%plain-module-begin',
476 u'#%printing-module-begin', u'#%provide', u'#%require', 476 '#%printing-module-begin', '#%provide', '#%require',
477 u'#%stratified-body', u'#%top', u'#%top-interaction', 477 '#%stratified-body', '#%top', '#%top-interaction',
478 u'#%variable-reference', u'->', u'->*', u'->*m', u'->d', u'->dm', u'->i', 478 '#%variable-reference', '->', '->*', '->*m', '->d', '->dm', '->i',
479 u'->m', u'...', u':do-in', u'==', u'=>', u'_', u'absent', u'abstract', 479 '->m', '...', ':do-in', '==', '=>', '_', 'absent', 'abstract',
480 u'all-defined-out', u'all-from-out', u'and', u'any', u'augment', u'augment*', 480 'all-defined-out', 'all-from-out', 'and', 'any', 'augment', 'augment*',
481 u'augment-final', u'augment-final*', u'augride', u'augride*', u'begin', 481 'augment-final', 'augment-final*', 'augride', 'augride*', 'begin',
482 u'begin-for-syntax', u'begin0', u'case', u'case->', u'case->m', 482 'begin-for-syntax', 'begin0', 'case', 'case->', 'case->m',
483 u'case-lambda', u'class', u'class*', u'class-field-accessor', 483 'case-lambda', 'class', 'class*', 'class-field-accessor',
484 u'class-field-mutator', u'class/c', u'class/derived', u'combine-in', 484 'class-field-mutator', 'class/c', 'class/derived', 'combine-in',
485 u'combine-out', u'command-line', u'compound-unit', u'compound-unit/infer', 485 'combine-out', 'command-line', 'compound-unit', 'compound-unit/infer',
486 u'cond', u'cons/dc', u'contract', u'contract-out', u'contract-struct', 486 'cond', 'cons/dc', 'contract', 'contract-out', 'contract-struct',
487 u'contracted', u'define', u'define-compound-unit', 487 'contracted', 'define', 'define-compound-unit',
488 u'define-compound-unit/infer', u'define-contract-struct', 488 'define-compound-unit/infer', 'define-contract-struct',
489 u'define-custom-hash-types', u'define-custom-set-types', 489 'define-custom-hash-types', 'define-custom-set-types',
490 u'define-for-syntax', u'define-local-member-name', u'define-logger', 490 'define-for-syntax', 'define-local-member-name', 'define-logger',
491 u'define-match-expander', u'define-member-name', 491 'define-match-expander', 'define-member-name',
492 u'define-module-boundary-contract', u'define-namespace-anchor', 492 'define-module-boundary-contract', 'define-namespace-anchor',
493 u'define-opt/c', u'define-sequence-syntax', u'define-serializable-class', 493 'define-opt/c', 'define-sequence-syntax', 'define-serializable-class',
494 u'define-serializable-class*', u'define-signature', 494 'define-serializable-class*', 'define-signature',
495 u'define-signature-form', u'define-struct', u'define-struct/contract', 495 'define-signature-form', 'define-struct', 'define-struct/contract',
496 u'define-struct/derived', u'define-syntax', u'define-syntax-rule', 496 'define-struct/derived', 'define-syntax', 'define-syntax-rule',
497 u'define-syntaxes', u'define-unit', u'define-unit-binding', 497 'define-syntaxes', 'define-unit', 'define-unit-binding',
498 u'define-unit-from-context', u'define-unit/contract', 498 'define-unit-from-context', 'define-unit/contract',
499 u'define-unit/new-import-export', u'define-unit/s', u'define-values', 499 'define-unit/new-import-export', 'define-unit/s', 'define-values',
500 u'define-values-for-export', u'define-values-for-syntax', 500 'define-values-for-export', 'define-values-for-syntax',
501 u'define-values/invoke-unit', u'define-values/invoke-unit/infer', 501 'define-values/invoke-unit', 'define-values/invoke-unit/infer',
502 u'define/augment', u'define/augment-final', u'define/augride', 502 'define/augment', 'define/augment-final', 'define/augride',
503 u'define/contract', u'define/final-prop', u'define/match', 503 'define/contract', 'define/final-prop', 'define/match',
504 u'define/overment', u'define/override', u'define/override-final', 504 'define/overment', 'define/override', 'define/override-final',
505 u'define/private', u'define/public', u'define/public-final', 505 'define/private', 'define/public', 'define/public-final',
506 u'define/pubment', u'define/subexpression-pos-prop', 506 'define/pubment', 'define/subexpression-pos-prop',
507 u'define/subexpression-pos-prop/name', u'delay', u'delay/idle', 507 'define/subexpression-pos-prop/name', 'delay', 'delay/idle',
508 u'delay/name', u'delay/strict', u'delay/sync', u'delay/thread', u'do', 508 'delay/name', 'delay/strict', 'delay/sync', 'delay/thread', 'do',
509 u'else', u'except', u'except-in', u'except-out', u'export', u'extends', 509 'else', 'except', 'except-in', 'except-out', 'export', 'extends',
510 u'failure-cont', u'false', u'false/c', u'field', u'field-bound?', u'file', 510 'failure-cont', 'false', 'false/c', 'field', 'field-bound?', 'file',
511 u'flat-murec-contract', u'flat-rec-contract', u'for', u'for*', u'for*/and', 511 'flat-murec-contract', 'flat-rec-contract', 'for', 'for*', 'for*/and',
512 u'for*/async', u'for*/first', u'for*/fold', u'for*/fold/derived', 512 'for*/async', 'for*/first', 'for*/fold', 'for*/fold/derived',
513 u'for*/hash', u'for*/hasheq', u'for*/hasheqv', u'for*/last', u'for*/list', 513 'for*/hash', 'for*/hasheq', 'for*/hasheqv', 'for*/last', 'for*/list',
514 u'for*/lists', u'for*/mutable-set', u'for*/mutable-seteq', 514 'for*/lists', 'for*/mutable-set', 'for*/mutable-seteq',
515 u'for*/mutable-seteqv', u'for*/or', u'for*/product', u'for*/set', 515 'for*/mutable-seteqv', 'for*/or', 'for*/product', 'for*/set',
516 u'for*/seteq', u'for*/seteqv', u'for*/stream', u'for*/sum', u'for*/vector', 516 'for*/seteq', 'for*/seteqv', 'for*/stream', 'for*/sum', 'for*/vector',
517 u'for*/weak-set', u'for*/weak-seteq', u'for*/weak-seteqv', u'for-label', 517 'for*/weak-set', 'for*/weak-seteq', 'for*/weak-seteqv', 'for-label',
518 u'for-meta', u'for-syntax', u'for-template', u'for/and', u'for/async', 518 'for-meta', 'for-syntax', 'for-template', 'for/and', 'for/async',
519 u'for/first', u'for/fold', u'for/fold/derived', u'for/hash', u'for/hasheq', 519 'for/first', 'for/fold', 'for/fold/derived', 'for/hash', 'for/hasheq',
520 u'for/hasheqv', u'for/last', u'for/list', u'for/lists', u'for/mutable-set', 520 'for/hasheqv', 'for/last', 'for/list', 'for/lists', 'for/mutable-set',
521 u'for/mutable-seteq', u'for/mutable-seteqv', u'for/or', u'for/product', 521 'for/mutable-seteq', 'for/mutable-seteqv', 'for/or', 'for/product',
522 u'for/set', u'for/seteq', u'for/seteqv', u'for/stream', u'for/sum', 522 'for/set', 'for/seteq', 'for/seteqv', 'for/stream', 'for/sum',
523 u'for/vector', u'for/weak-set', u'for/weak-seteq', u'for/weak-seteqv', 523 'for/vector', 'for/weak-set', 'for/weak-seteq', 'for/weak-seteqv',
524 u'gen:custom-write', u'gen:dict', u'gen:equal+hash', u'gen:set', 524 'gen:custom-write', 'gen:dict', 'gen:equal+hash', 'gen:set',
525 u'gen:stream', u'generic', u'get-field', u'hash/dc', u'if', u'implies', 525 'gen:stream', 'generic', 'get-field', 'hash/dc', 'if', 'implies',
526 u'import', u'include', u'include-at/relative-to', 526 'import', 'include', 'include-at/relative-to',
527 u'include-at/relative-to/reader', u'include/reader', u'inherit', 527 'include-at/relative-to/reader', 'include/reader', 'inherit',
528 u'inherit-field', u'inherit/inner', u'inherit/super', u'init', 528 'inherit-field', 'inherit/inner', 'inherit/super', 'init',
529 u'init-depend', u'init-field', u'init-rest', u'inner', u'inspect', 529 'init-depend', 'init-field', 'init-rest', 'inner', 'inspect',
530 u'instantiate', u'interface', u'interface*', u'invariant-assertion', 530 'instantiate', 'interface', 'interface*', 'invariant-assertion',
531 u'invoke-unit', u'invoke-unit/infer', u'lambda', u'lazy', u'let', u'let*', 531 'invoke-unit', 'invoke-unit/infer', 'lambda', 'lazy', 'let', 'let*',
532 u'let*-values', u'let-syntax', u'let-syntaxes', u'let-values', u'let/cc', 532 'let*-values', 'let-syntax', 'let-syntaxes', 'let-values', 'let/cc',
533 u'let/ec', u'letrec', u'letrec-syntax', u'letrec-syntaxes', 533 'let/ec', 'letrec', 'letrec-syntax', 'letrec-syntaxes',
534 u'letrec-syntaxes+values', u'letrec-values', u'lib', u'link', u'local', 534 'letrec-syntaxes+values', 'letrec-values', 'lib', 'link', 'local',
535 u'local-require', u'log-debug', u'log-error', u'log-fatal', u'log-info', 535 'local-require', 'log-debug', 'log-error', 'log-fatal', 'log-info',
536 u'log-warning', u'match', u'match*', u'match*/derived', u'match-define', 536 'log-warning', 'match', 'match*', 'match*/derived', 'match-define',
537 u'match-define-values', u'match-lambda', u'match-lambda*', 537 'match-define-values', 'match-lambda', 'match-lambda*',
538 u'match-lambda**', u'match-let', u'match-let*', u'match-let*-values', 538 'match-lambda**', 'match-let', 'match-let*', 'match-let*-values',
539 u'match-let-values', u'match-letrec', u'match-letrec-values', 539 'match-let-values', 'match-letrec', 'match-letrec-values',
540 u'match/derived', u'match/values', u'member-name-key', u'mixin', u'module', 540 'match/derived', 'match/values', 'member-name-key', 'mixin', 'module',
541 u'module*', u'module+', u'nand', u'new', u'nor', u'object-contract', 541 'module*', 'module+', 'nand', 'new', 'nor', 'object-contract',
542 u'object/c', u'only', u'only-in', u'only-meta-in', u'open', u'opt/c', u'or', 542 'object/c', 'only', 'only-in', 'only-meta-in', 'open', 'opt/c', 'or',
543 u'overment', u'overment*', u'override', u'override*', u'override-final', 543 'overment', 'overment*', 'override', 'override*', 'override-final',
544 u'override-final*', u'parameterize', u'parameterize*', 544 'override-final*', 'parameterize', 'parameterize*',
545 u'parameterize-break', u'parametric->/c', u'place', u'place*', 545 'parameterize-break', 'parametric->/c', 'place', 'place*',
546 u'place/context', u'planet', u'prefix', u'prefix-in', u'prefix-out', 546 'place/context', 'planet', 'prefix', 'prefix-in', 'prefix-out',
547 u'private', u'private*', u'prompt-tag/c', u'protect-out', u'provide', 547 'private', 'private*', 'prompt-tag/c', 'protect-out', 'provide',
548 u'provide-signature-elements', u'provide/contract', u'public', u'public*', 548 'provide-signature-elements', 'provide/contract', 'public', 'public*',
549 u'public-final', u'public-final*', u'pubment', u'pubment*', u'quasiquote', 549 'public-final', 'public-final*', 'pubment', 'pubment*', 'quasiquote',
550 u'quasisyntax', u'quasisyntax/loc', u'quote', u'quote-syntax', 550 'quasisyntax', 'quasisyntax/loc', 'quote', 'quote-syntax',
551 u'quote-syntax/prune', u'recontract-out', u'recursive-contract', 551 'quote-syntax/prune', 'recontract-out', 'recursive-contract',
552 u'relative-in', u'rename', u'rename-in', u'rename-inner', u'rename-out', 552 'relative-in', 'rename', 'rename-in', 'rename-inner', 'rename-out',
553 u'rename-super', u'require', u'send', u'send*', u'send+', u'send-generic', 553 'rename-super', 'require', 'send', 'send*', 'send+', 'send-generic',
554 u'send/apply', u'send/keyword-apply', u'set!', u'set!-values', 554 'send/apply', 'send/keyword-apply', 'set!', 'set!-values',
555 u'set-field!', u'shared', u'stream', u'stream*', u'stream-cons', u'struct', 555 'set-field!', 'shared', 'stream', 'stream*', 'stream-cons', 'struct',
556 u'struct*', u'struct-copy', u'struct-field-index', u'struct-out', 556 'struct*', 'struct-copy', 'struct-field-index', 'struct-out',
557 u'struct/c', u'struct/ctc', u'struct/dc', u'submod', u'super', 557 'struct/c', 'struct/ctc', 'struct/dc', 'submod', 'super',
558 u'super-instantiate', u'super-make-object', u'super-new', u'syntax', 558 'super-instantiate', 'super-make-object', 'super-new', 'syntax',
559 u'syntax-case', u'syntax-case*', u'syntax-id-rules', u'syntax-rules', 559 'syntax-case', 'syntax-case*', 'syntax-id-rules', 'syntax-rules',
560 u'syntax/loc', u'tag', u'this', u'this%', u'thunk', u'thunk*', u'time', 560 'syntax/loc', 'tag', 'this', 'this%', 'thunk', 'thunk*', 'time',
561 u'unconstrained-domain->', u'unit', u'unit-from-context', u'unit/c', 561 'unconstrained-domain->', 'unit', 'unit-from-context', 'unit/c',
562 u'unit/new-import-export', u'unit/s', u'unless', u'unquote', 562 'unit/new-import-export', 'unit/s', 'unless', 'unquote',
563 u'unquote-splicing', u'unsyntax', u'unsyntax-splicing', u'values/drop', 563 'unquote-splicing', 'unsyntax', 'unsyntax-splicing', 'values/drop',
564 u'when', u'with-continuation-mark', u'with-contract', 564 'when', 'with-continuation-mark', 'with-contract',
565 u'with-contract-continuation-mark', u'with-handlers', u'with-handlers*', 565 'with-contract-continuation-mark', 'with-handlers', 'with-handlers*',
566 u'with-method', u'with-syntax', u'λ' 566 'with-method', 'with-syntax', 'λ'
567 ) 567 )
568 568
569 # Generated by example.rkt 569 # Generated by example.rkt
570 _builtins = ( 570 _builtins = (
571 u'*', u'*list/c', u'+', u'-', u'/', u'<', u'</c', u'<=', u'<=/c', u'=', u'=/c', 571 '*', '*list/c', '+', '-', '/', '<', '</c', '<=', '<=/c', '=', '=/c',
572 u'>', u'>/c', u'>=', u'>=/c', u'abort-current-continuation', u'abs', 572 '>', '>/c', '>=', '>=/c', 'abort-current-continuation', 'abs',
573 u'absolute-path?', u'acos', u'add-between', u'add1', u'alarm-evt', 573 'absolute-path?', 'acos', 'add-between', 'add1', 'alarm-evt',
574 u'always-evt', u'and/c', u'andmap', u'angle', u'any/c', u'append', u'append*', 574 'always-evt', 'and/c', 'andmap', 'angle', 'any/c', 'append', 'append*',
575 u'append-map', u'apply', u'argmax', u'argmin', u'arithmetic-shift', 575 'append-map', 'apply', 'argmax', 'argmin', 'arithmetic-shift',
576 u'arity-at-least', u'arity-at-least-value', u'arity-at-least?', 576 'arity-at-least', 'arity-at-least-value', 'arity-at-least?',
577 u'arity-checking-wrapper', u'arity-includes?', u'arity=?', 577 'arity-checking-wrapper', 'arity-includes?', 'arity=?',
578 u'arrow-contract-info', u'arrow-contract-info-accepts-arglist', 578 'arrow-contract-info', 'arrow-contract-info-accepts-arglist',
579 u'arrow-contract-info-chaperone-procedure', 579 'arrow-contract-info-chaperone-procedure',
580 u'arrow-contract-info-check-first-order', u'arrow-contract-info?', 580 'arrow-contract-info-check-first-order', 'arrow-contract-info?',
581 u'asin', u'assf', u'assoc', u'assq', u'assv', u'atan', 581 'asin', 'assf', 'assoc', 'assq', 'assv', 'atan',
582 u'bad-number-of-results', u'banner', u'base->-doms/c', u'base->-rngs/c', 582 'bad-number-of-results', 'banner', 'base->-doms/c', 'base->-rngs/c',
583 u'base->?', u'between/c', u'bitwise-and', u'bitwise-bit-field', 583 'base->?', 'between/c', 'bitwise-and', 'bitwise-bit-field',
584 u'bitwise-bit-set?', u'bitwise-ior', u'bitwise-not', u'bitwise-xor', 584 'bitwise-bit-set?', 'bitwise-ior', 'bitwise-not', 'bitwise-xor',
585 u'blame-add-car-context', u'blame-add-cdr-context', u'blame-add-context', 585 'blame-add-car-context', 'blame-add-cdr-context', 'blame-add-context',
586 u'blame-add-missing-party', u'blame-add-nth-arg-context', 586 'blame-add-missing-party', 'blame-add-nth-arg-context',
587 u'blame-add-range-context', u'blame-add-unknown-context', 587 'blame-add-range-context', 'blame-add-unknown-context',
588 u'blame-context', u'blame-contract', u'blame-fmt->-string', 588 'blame-context', 'blame-contract', 'blame-fmt->-string',
589 u'blame-missing-party?', u'blame-negative', u'blame-original?', 589 'blame-missing-party?', 'blame-negative', 'blame-original?',
590 u'blame-positive', u'blame-replace-negative', u'blame-source', 590 'blame-positive', 'blame-replace-negative', 'blame-source',
591 u'blame-swap', u'blame-swapped?', u'blame-update', u'blame-value', 591 'blame-swap', 'blame-swapped?', 'blame-update', 'blame-value',
592 u'blame?', u'boolean=?', u'boolean?', u'bound-identifier=?', u'box', 592 'blame?', 'boolean=?', 'boolean?', 'bound-identifier=?', 'box',
593 u'box-cas!', u'box-immutable', u'box-immutable/c', u'box/c', u'box?', 593 'box-cas!', 'box-immutable', 'box-immutable/c', 'box/c', 'box?',
594 u'break-enabled', u'break-parameterization?', u'break-thread', 594 'break-enabled', 'break-parameterization?', 'break-thread',
595 u'build-chaperone-contract-property', u'build-compound-type-name', 595 'build-chaperone-contract-property', 'build-compound-type-name',
596 u'build-contract-property', u'build-flat-contract-property', 596 'build-contract-property', 'build-flat-contract-property',
597 u'build-list', u'build-path', u'build-path/convention-type', 597 'build-list', 'build-path', 'build-path/convention-type',
598 u'build-string', u'build-vector', u'byte-pregexp', u'byte-pregexp?', 598 'build-string', 'build-vector', 'byte-pregexp', 'byte-pregexp?',
599 u'byte-ready?', u'byte-regexp', u'byte-regexp?', u'byte?', u'bytes', 599 'byte-ready?', 'byte-regexp', 'byte-regexp?', 'byte?', 'bytes',
600 u'bytes->immutable-bytes', u'bytes->list', u'bytes->path', 600 'bytes->immutable-bytes', 'bytes->list', 'bytes->path',
601 u'bytes->path-element', u'bytes->string/latin-1', u'bytes->string/locale', 601 'bytes->path-element', 'bytes->string/latin-1', 'bytes->string/locale',
602 u'bytes->string/utf-8', u'bytes-append', u'bytes-append*', 602 'bytes->string/utf-8', 'bytes-append', 'bytes-append*',
603 u'bytes-close-converter', u'bytes-convert', u'bytes-convert-end', 603 'bytes-close-converter', 'bytes-convert', 'bytes-convert-end',
604 u'bytes-converter?', u'bytes-copy', u'bytes-copy!', 604 'bytes-converter?', 'bytes-copy', 'bytes-copy!',
605 u'bytes-environment-variable-name?', u'bytes-fill!', u'bytes-join', 605 'bytes-environment-variable-name?', 'bytes-fill!', 'bytes-join',
606 u'bytes-length', u'bytes-no-nuls?', u'bytes-open-converter', u'bytes-ref', 606 'bytes-length', 'bytes-no-nuls?', 'bytes-open-converter', 'bytes-ref',
607 u'bytes-set!', u'bytes-utf-8-index', u'bytes-utf-8-length', 607 'bytes-set!', 'bytes-utf-8-index', 'bytes-utf-8-length',
608 u'bytes-utf-8-ref', u'bytes<?', u'bytes=?', u'bytes>?', u'bytes?', u'caaaar', 608 'bytes-utf-8-ref', 'bytes<?', 'bytes=?', 'bytes>?', 'bytes?', 'caaaar',
609 u'caaadr', u'caaar', u'caadar', u'caaddr', u'caadr', u'caar', u'cadaar', 609 'caaadr', 'caaar', 'caadar', 'caaddr', 'caadr', 'caar', 'cadaar',
610 u'cadadr', u'cadar', u'caddar', u'cadddr', u'caddr', u'cadr', 610 'cadadr', 'cadar', 'caddar', 'cadddr', 'caddr', 'cadr',
611 u'call-in-nested-thread', u'call-with-atomic-output-file', 611 'call-in-nested-thread', 'call-with-atomic-output-file',
612 u'call-with-break-parameterization', 612 'call-with-break-parameterization',
613 u'call-with-composable-continuation', u'call-with-continuation-barrier', 613 'call-with-composable-continuation', 'call-with-continuation-barrier',
614 u'call-with-continuation-prompt', u'call-with-current-continuation', 614 'call-with-continuation-prompt', 'call-with-current-continuation',
615 u'call-with-default-reading-parameterization', 615 'call-with-default-reading-parameterization',
616 u'call-with-escape-continuation', u'call-with-exception-handler', 616 'call-with-escape-continuation', 'call-with-exception-handler',
617 u'call-with-file-lock/timeout', u'call-with-immediate-continuation-mark', 617 'call-with-file-lock/timeout', 'call-with-immediate-continuation-mark',
618 u'call-with-input-bytes', u'call-with-input-file', 618 'call-with-input-bytes', 'call-with-input-file',
619 u'call-with-input-file*', u'call-with-input-string', 619 'call-with-input-file*', 'call-with-input-string',
620 u'call-with-output-bytes', u'call-with-output-file', 620 'call-with-output-bytes', 'call-with-output-file',
621 u'call-with-output-file*', u'call-with-output-string', 621 'call-with-output-file*', 'call-with-output-string',
622 u'call-with-parameterization', u'call-with-semaphore', 622 'call-with-parameterization', 'call-with-semaphore',
623 u'call-with-semaphore/enable-break', u'call-with-values', u'call/cc', 623 'call-with-semaphore/enable-break', 'call-with-values', 'call/cc',
624 u'call/ec', u'car', u'cartesian-product', u'cdaaar', u'cdaadr', u'cdaar', 624 'call/ec', 'car', 'cartesian-product', 'cdaaar', 'cdaadr', 'cdaar',
625 u'cdadar', u'cdaddr', u'cdadr', u'cdar', u'cddaar', u'cddadr', u'cddar', 625 'cdadar', 'cdaddr', 'cdadr', 'cdar', 'cddaar', 'cddadr', 'cddar',
626 u'cdddar', u'cddddr', u'cdddr', u'cddr', u'cdr', u'ceiling', u'channel-get', 626 'cdddar', 'cddddr', 'cdddr', 'cddr', 'cdr', 'ceiling', 'channel-get',
627 u'channel-put', u'channel-put-evt', u'channel-put-evt?', 627 'channel-put', 'channel-put-evt', 'channel-put-evt?',
628 u'channel-try-get', u'channel/c', u'channel?', u'chaperone-box', 628 'channel-try-get', 'channel/c', 'channel?', 'chaperone-box',
629 u'chaperone-channel', u'chaperone-continuation-mark-key', 629 'chaperone-channel', 'chaperone-continuation-mark-key',
630 u'chaperone-contract-property?', u'chaperone-contract?', u'chaperone-evt', 630 'chaperone-contract-property?', 'chaperone-contract?', 'chaperone-evt',
631 u'chaperone-hash', u'chaperone-hash-set', u'chaperone-of?', 631 'chaperone-hash', 'chaperone-hash-set', 'chaperone-of?',
632 u'chaperone-procedure', u'chaperone-procedure*', u'chaperone-prompt-tag', 632 'chaperone-procedure', 'chaperone-procedure*', 'chaperone-prompt-tag',
633 u'chaperone-struct', u'chaperone-struct-type', u'chaperone-vector', 633 'chaperone-struct', 'chaperone-struct-type', 'chaperone-vector',
634 u'chaperone?', u'char->integer', u'char-alphabetic?', u'char-blank?', 634 'chaperone?', 'char->integer', 'char-alphabetic?', 'char-blank?',
635 u'char-ci<=?', u'char-ci<?', u'char-ci=?', u'char-ci>=?', u'char-ci>?', 635 'char-ci<=?', 'char-ci<?', 'char-ci=?', 'char-ci>=?', 'char-ci>?',
636 u'char-downcase', u'char-foldcase', u'char-general-category', 636 'char-downcase', 'char-foldcase', 'char-general-category',
637 u'char-graphic?', u'char-in', u'char-in/c', u'char-iso-control?', 637 'char-graphic?', 'char-in', 'char-in/c', 'char-iso-control?',
638 u'char-lower-case?', u'char-numeric?', u'char-punctuation?', 638 'char-lower-case?', 'char-numeric?', 'char-punctuation?',
639 u'char-ready?', u'char-symbolic?', u'char-title-case?', u'char-titlecase', 639 'char-ready?', 'char-symbolic?', 'char-title-case?', 'char-titlecase',
640 u'char-upcase', u'char-upper-case?', u'char-utf-8-length', 640 'char-upcase', 'char-upper-case?', 'char-utf-8-length',
641 u'char-whitespace?', u'char<=?', u'char<?', u'char=?', u'char>=?', u'char>?', 641 'char-whitespace?', 'char<=?', 'char<?', 'char=?', 'char>=?', 'char>?',
642 u'char?', u'check-duplicate-identifier', u'check-duplicates', 642 'char?', 'check-duplicate-identifier', 'check-duplicates',
643 u'checked-procedure-check-and-extract', u'choice-evt', 643 'checked-procedure-check-and-extract', 'choice-evt',
644 u'class->interface', u'class-info', u'class-seal', u'class-unseal', 644 'class->interface', 'class-info', 'class-seal', 'class-unseal',
645 u'class?', u'cleanse-path', u'close-input-port', u'close-output-port', 645 'class?', 'cleanse-path', 'close-input-port', 'close-output-port',
646 u'coerce-chaperone-contract', u'coerce-chaperone-contracts', 646 'coerce-chaperone-contract', 'coerce-chaperone-contracts',
647 u'coerce-contract', u'coerce-contract/f', u'coerce-contracts', 647 'coerce-contract', 'coerce-contract/f', 'coerce-contracts',
648 u'coerce-flat-contract', u'coerce-flat-contracts', u'collect-garbage', 648 'coerce-flat-contract', 'coerce-flat-contracts', 'collect-garbage',
649 u'collection-file-path', u'collection-path', u'combinations', u'compile', 649 'collection-file-path', 'collection-path', 'combinations', 'compile',
650 u'compile-allow-set!-undefined', u'compile-context-preservation-enabled', 650 'compile-allow-set!-undefined', 'compile-context-preservation-enabled',
651 u'compile-enforce-module-constants', u'compile-syntax', 651 'compile-enforce-module-constants', 'compile-syntax',
652 u'compiled-expression-recompile', u'compiled-expression?', 652 'compiled-expression-recompile', 'compiled-expression?',
653 u'compiled-module-expression?', u'complete-path?', u'complex?', u'compose', 653 'compiled-module-expression?', 'complete-path?', 'complex?', 'compose',
654 u'compose1', u'conjoin', u'conjugate', u'cons', u'cons/c', u'cons?', u'const', 654 'compose1', 'conjoin', 'conjugate', 'cons', 'cons/c', 'cons?', 'const',
655 u'continuation-mark-key/c', u'continuation-mark-key?', 655 'continuation-mark-key/c', 'continuation-mark-key?',
656 u'continuation-mark-set->context', u'continuation-mark-set->list', 656 'continuation-mark-set->context', 'continuation-mark-set->list',
657 u'continuation-mark-set->list*', u'continuation-mark-set-first', 657 'continuation-mark-set->list*', 'continuation-mark-set-first',
658 u'continuation-mark-set?', u'continuation-marks', 658 'continuation-mark-set?', 'continuation-marks',
659 u'continuation-prompt-available?', u'continuation-prompt-tag?', 659 'continuation-prompt-available?', 'continuation-prompt-tag?',
660 u'continuation?', u'contract-continuation-mark-key', 660 'continuation?', 'contract-continuation-mark-key',
661 u'contract-custom-write-property-proc', u'contract-exercise', 661 'contract-custom-write-property-proc', 'contract-exercise',
662 u'contract-first-order', u'contract-first-order-passes?', 662 'contract-first-order', 'contract-first-order-passes?',
663 u'contract-late-neg-projection', u'contract-name', u'contract-proc', 663 'contract-late-neg-projection', 'contract-name', 'contract-proc',
664 u'contract-projection', u'contract-property?', 664 'contract-projection', 'contract-property?',
665 u'contract-random-generate', u'contract-random-generate-fail', 665 'contract-random-generate', 'contract-random-generate-fail',
666 u'contract-random-generate-fail?', 666 'contract-random-generate-fail?',
667 u'contract-random-generate-get-current-environment', 667 'contract-random-generate-get-current-environment',
668 u'contract-random-generate-stash', u'contract-random-generate/choose', 668 'contract-random-generate-stash', 'contract-random-generate/choose',
669 u'contract-stronger?', u'contract-struct-exercise', 669 'contract-stronger?', 'contract-struct-exercise',
670 u'contract-struct-generate', u'contract-struct-late-neg-projection', 670 'contract-struct-generate', 'contract-struct-late-neg-projection',
671 u'contract-struct-list-contract?', u'contract-val-first-projection', 671 'contract-struct-list-contract?', 'contract-val-first-projection',
672 u'contract?', u'convert-stream', u'copy-directory/files', u'copy-file', 672 'contract?', 'convert-stream', 'copy-directory/files', 'copy-file',
673 u'copy-port', u'cos', u'cosh', u'count', u'current-blame-format', 673 'copy-port', 'cos', 'cosh', 'count', 'current-blame-format',
674 u'current-break-parameterization', u'current-code-inspector', 674 'current-break-parameterization', 'current-code-inspector',
675 u'current-command-line-arguments', u'current-compile', 675 'current-command-line-arguments', 'current-compile',
676 u'current-compiled-file-roots', u'current-continuation-marks', 676 'current-compiled-file-roots', 'current-continuation-marks',
677 u'current-contract-region', u'current-custodian', u'current-directory', 677 'current-contract-region', 'current-custodian', 'current-directory',
678 u'current-directory-for-user', u'current-drive', 678 'current-directory-for-user', 'current-drive',
679 u'current-environment-variables', u'current-error-port', u'current-eval', 679 'current-environment-variables', 'current-error-port', 'current-eval',
680 u'current-evt-pseudo-random-generator', 680 'current-evt-pseudo-random-generator',
681 u'current-force-delete-permissions', u'current-future', 681 'current-force-delete-permissions', 'current-future',
682 u'current-gc-milliseconds', u'current-get-interaction-input-port', 682 'current-gc-milliseconds', 'current-get-interaction-input-port',
683 u'current-inexact-milliseconds', u'current-input-port', 683 'current-inexact-milliseconds', 'current-input-port',
684 u'current-inspector', u'current-library-collection-links', 684 'current-inspector', 'current-library-collection-links',
685 u'current-library-collection-paths', u'current-load', 685 'current-library-collection-paths', 'current-load',
686 u'current-load-extension', u'current-load-relative-directory', 686 'current-load-extension', 'current-load-relative-directory',
687 u'current-load/use-compiled', u'current-locale', u'current-logger', 687 'current-load/use-compiled', 'current-locale', 'current-logger',
688 u'current-memory-use', u'current-milliseconds', 688 'current-memory-use', 'current-milliseconds',
689 u'current-module-declare-name', u'current-module-declare-source', 689 'current-module-declare-name', 'current-module-declare-source',
690 u'current-module-name-resolver', u'current-module-path-for-load', 690 'current-module-name-resolver', 'current-module-path-for-load',
691 u'current-namespace', u'current-output-port', u'current-parameterization', 691 'current-namespace', 'current-output-port', 'current-parameterization',
692 u'current-plumber', u'current-preserved-thread-cell-values', 692 'current-plumber', 'current-preserved-thread-cell-values',
693 u'current-print', u'current-process-milliseconds', u'current-prompt-read', 693 'current-print', 'current-process-milliseconds', 'current-prompt-read',
694 u'current-pseudo-random-generator', u'current-read-interaction', 694 'current-pseudo-random-generator', 'current-read-interaction',
695 u'current-reader-guard', u'current-readtable', u'current-seconds', 695 'current-reader-guard', 'current-readtable', 'current-seconds',
696 u'current-security-guard', u'current-subprocess-custodian-mode', 696 'current-security-guard', 'current-subprocess-custodian-mode',
697 u'current-thread', u'current-thread-group', 697 'current-thread', 'current-thread-group',
698 u'current-thread-initial-stack-size', 698 'current-thread-initial-stack-size',
699 u'current-write-relative-directory', u'curry', u'curryr', 699 'current-write-relative-directory', 'curry', 'curryr',
700 u'custodian-box-value', u'custodian-box?', u'custodian-limit-memory', 700 'custodian-box-value', 'custodian-box?', 'custodian-limit-memory',
701 u'custodian-managed-list', u'custodian-memory-accounting-available?', 701 'custodian-managed-list', 'custodian-memory-accounting-available?',
702 u'custodian-require-memory', u'custodian-shutdown-all', u'custodian?', 702 'custodian-require-memory', 'custodian-shutdown-all', 'custodian?',
703 u'custom-print-quotable-accessor', u'custom-print-quotable?', 703 'custom-print-quotable-accessor', 'custom-print-quotable?',
704 u'custom-write-accessor', u'custom-write-property-proc', u'custom-write?', 704 'custom-write-accessor', 'custom-write-property-proc', 'custom-write?',
705 u'date', u'date*', u'date*-nanosecond', u'date*-time-zone-name', u'date*?', 705 'date', 'date*', 'date*-nanosecond', 'date*-time-zone-name', 'date*?',
706 u'date-day', u'date-dst?', u'date-hour', u'date-minute', u'date-month', 706 'date-day', 'date-dst?', 'date-hour', 'date-minute', 'date-month',
707 u'date-second', u'date-time-zone-offset', u'date-week-day', u'date-year', 707 'date-second', 'date-time-zone-offset', 'date-week-day', 'date-year',
708 u'date-year-day', u'date?', u'datum->syntax', u'datum-intern-literal', 708 'date-year-day', 'date?', 'datum->syntax', 'datum-intern-literal',
709 u'default-continuation-prompt-tag', u'degrees->radians', 709 'default-continuation-prompt-tag', 'degrees->radians',
710 u'delete-directory', u'delete-directory/files', u'delete-file', 710 'delete-directory', 'delete-directory/files', 'delete-file',
711 u'denominator', u'dict->list', u'dict-can-functional-set?', 711 'denominator', 'dict->list', 'dict-can-functional-set?',
712 u'dict-can-remove-keys?', u'dict-clear', u'dict-clear!', u'dict-copy', 712 'dict-can-remove-keys?', 'dict-clear', 'dict-clear!', 'dict-copy',
713 u'dict-count', u'dict-empty?', u'dict-for-each', u'dict-has-key?', 713 'dict-count', 'dict-empty?', 'dict-for-each', 'dict-has-key?',
714 u'dict-implements/c', u'dict-implements?', u'dict-iter-contract', 714 'dict-implements/c', 'dict-implements?', 'dict-iter-contract',
715 u'dict-iterate-first', u'dict-iterate-key', u'dict-iterate-next', 715 'dict-iterate-first', 'dict-iterate-key', 'dict-iterate-next',
716 u'dict-iterate-value', u'dict-key-contract', u'dict-keys', u'dict-map', 716 'dict-iterate-value', 'dict-key-contract', 'dict-keys', 'dict-map',
717 u'dict-mutable?', u'dict-ref', u'dict-ref!', u'dict-remove', 717 'dict-mutable?', 'dict-ref', 'dict-ref!', 'dict-remove',
718 u'dict-remove!', u'dict-set', u'dict-set!', u'dict-set*', u'dict-set*!', 718 'dict-remove!', 'dict-set', 'dict-set!', 'dict-set*', 'dict-set*!',
719 u'dict-update', u'dict-update!', u'dict-value-contract', u'dict-values', 719 'dict-update', 'dict-update!', 'dict-value-contract', 'dict-values',
720 u'dict?', u'directory-exists?', u'directory-list', u'disjoin', u'display', 720 'dict?', 'directory-exists?', 'directory-list', 'disjoin', 'display',
721 u'display-lines', u'display-lines-to-file', u'display-to-file', 721 'display-lines', 'display-lines-to-file', 'display-to-file',
722 u'displayln', u'double-flonum?', u'drop', u'drop-common-prefix', 722 'displayln', 'double-flonum?', 'drop', 'drop-common-prefix',
723 u'drop-right', u'dropf', u'dropf-right', u'dump-memory-stats', 723 'drop-right', 'dropf', 'dropf-right', 'dump-memory-stats',
724 u'dup-input-port', u'dup-output-port', u'dynamic->*', u'dynamic-get-field', 724 'dup-input-port', 'dup-output-port', 'dynamic->*', 'dynamic-get-field',
725 u'dynamic-object/c', u'dynamic-place', u'dynamic-place*', 725 'dynamic-object/c', 'dynamic-place', 'dynamic-place*',
726 u'dynamic-require', u'dynamic-require-for-syntax', u'dynamic-send', 726 'dynamic-require', 'dynamic-require-for-syntax', 'dynamic-send',
727 u'dynamic-set-field!', u'dynamic-wind', u'eighth', u'empty', 727 'dynamic-set-field!', 'dynamic-wind', 'eighth', 'empty',
728 u'empty-sequence', u'empty-stream', u'empty?', 728 'empty-sequence', 'empty-stream', 'empty?',
729 u'environment-variables-copy', u'environment-variables-names', 729 'environment-variables-copy', 'environment-variables-names',
730 u'environment-variables-ref', u'environment-variables-set!', 730 'environment-variables-ref', 'environment-variables-set!',
731 u'environment-variables?', u'eof', u'eof-evt', u'eof-object?', 731 'environment-variables?', 'eof', 'eof-evt', 'eof-object?',
732 u'ephemeron-value', u'ephemeron?', u'eprintf', u'eq-contract-val', 732 'ephemeron-value', 'ephemeron?', 'eprintf', 'eq-contract-val',
733 u'eq-contract?', u'eq-hash-code', u'eq?', u'equal-contract-val', 733 'eq-contract?', 'eq-hash-code', 'eq?', 'equal-contract-val',
734 u'equal-contract?', u'equal-hash-code', u'equal-secondary-hash-code', 734 'equal-contract?', 'equal-hash-code', 'equal-secondary-hash-code',
735 u'equal<%>', u'equal?', u'equal?/recur', u'eqv-hash-code', u'eqv?', u'error', 735 'equal<%>', 'equal?', 'equal?/recur', 'eqv-hash-code', 'eqv?', 'error',
736 u'error-display-handler', u'error-escape-handler', 736 'error-display-handler', 'error-escape-handler',
737 u'error-print-context-length', u'error-print-source-location', 737 'error-print-context-length', 'error-print-source-location',
738 u'error-print-width', u'error-value->string-handler', u'eval', 738 'error-print-width', 'error-value->string-handler', 'eval',
739 u'eval-jit-enabled', u'eval-syntax', u'even?', u'evt/c', u'evt?', 739 'eval-jit-enabled', 'eval-syntax', 'even?', 'evt/c', 'evt?',
740 u'exact->inexact', u'exact-ceiling', u'exact-floor', u'exact-integer?', 740 'exact->inexact', 'exact-ceiling', 'exact-floor', 'exact-integer?',
741 u'exact-nonnegative-integer?', u'exact-positive-integer?', u'exact-round', 741 'exact-nonnegative-integer?', 'exact-positive-integer?', 'exact-round',
742 u'exact-truncate', u'exact?', u'executable-yield-handler', u'exit', 742 'exact-truncate', 'exact?', 'executable-yield-handler', 'exit',
743 u'exit-handler', u'exn', u'exn-continuation-marks', u'exn-message', 743 'exit-handler', 'exn', 'exn-continuation-marks', 'exn-message',
744 u'exn:break', u'exn:break-continuation', u'exn:break:hang-up', 744 'exn:break', 'exn:break-continuation', 'exn:break:hang-up',
745 u'exn:break:hang-up?', u'exn:break:terminate', u'exn:break:terminate?', 745 'exn:break:hang-up?', 'exn:break:terminate', 'exn:break:terminate?',
746 u'exn:break?', u'exn:fail', u'exn:fail:contract', 746 'exn:break?', 'exn:fail', 'exn:fail:contract',
747 u'exn:fail:contract:arity', u'exn:fail:contract:arity?', 747 'exn:fail:contract:arity', 'exn:fail:contract:arity?',
748 u'exn:fail:contract:blame', u'exn:fail:contract:blame-object', 748 'exn:fail:contract:blame', 'exn:fail:contract:blame-object',
749 u'exn:fail:contract:blame?', u'exn:fail:contract:continuation', 749 'exn:fail:contract:blame?', 'exn:fail:contract:continuation',
750 u'exn:fail:contract:continuation?', u'exn:fail:contract:divide-by-zero', 750 'exn:fail:contract:continuation?', 'exn:fail:contract:divide-by-zero',
751 u'exn:fail:contract:divide-by-zero?', 751 'exn:fail:contract:divide-by-zero?',
752 u'exn:fail:contract:non-fixnum-result', 752 'exn:fail:contract:non-fixnum-result',
753 u'exn:fail:contract:non-fixnum-result?', u'exn:fail:contract:variable', 753 'exn:fail:contract:non-fixnum-result?', 'exn:fail:contract:variable',
754 u'exn:fail:contract:variable-id', u'exn:fail:contract:variable?', 754 'exn:fail:contract:variable-id', 'exn:fail:contract:variable?',
755 u'exn:fail:contract?', u'exn:fail:filesystem', 755 'exn:fail:contract?', 'exn:fail:filesystem',
756 u'exn:fail:filesystem:errno', u'exn:fail:filesystem:errno-errno', 756 'exn:fail:filesystem:errno', 'exn:fail:filesystem:errno-errno',
757 u'exn:fail:filesystem:errno?', u'exn:fail:filesystem:exists', 757 'exn:fail:filesystem:errno?', 'exn:fail:filesystem:exists',
758 u'exn:fail:filesystem:exists?', u'exn:fail:filesystem:missing-module', 758 'exn:fail:filesystem:exists?', 'exn:fail:filesystem:missing-module',
759 u'exn:fail:filesystem:missing-module-path', 759 'exn:fail:filesystem:missing-module-path',
760 u'exn:fail:filesystem:missing-module?', u'exn:fail:filesystem:version', 760 'exn:fail:filesystem:missing-module?', 'exn:fail:filesystem:version',
761 u'exn:fail:filesystem:version?', u'exn:fail:filesystem?', 761 'exn:fail:filesystem:version?', 'exn:fail:filesystem?',
762 u'exn:fail:network', u'exn:fail:network:errno', 762 'exn:fail:network', 'exn:fail:network:errno',
763 u'exn:fail:network:errno-errno', u'exn:fail:network:errno?', 763 'exn:fail:network:errno-errno', 'exn:fail:network:errno?',
764 u'exn:fail:network?', u'exn:fail:object', u'exn:fail:object?', 764 'exn:fail:network?', 'exn:fail:object', 'exn:fail:object?',
765 u'exn:fail:out-of-memory', u'exn:fail:out-of-memory?', u'exn:fail:read', 765 'exn:fail:out-of-memory', 'exn:fail:out-of-memory?', 'exn:fail:read',
766 u'exn:fail:read-srclocs', u'exn:fail:read:eof', u'exn:fail:read:eof?', 766 'exn:fail:read-srclocs', 'exn:fail:read:eof', 'exn:fail:read:eof?',
767 u'exn:fail:read:non-char', u'exn:fail:read:non-char?', u'exn:fail:read?', 767 'exn:fail:read:non-char', 'exn:fail:read:non-char?', 'exn:fail:read?',
768 u'exn:fail:syntax', u'exn:fail:syntax-exprs', 768 'exn:fail:syntax', 'exn:fail:syntax-exprs',
769 u'exn:fail:syntax:missing-module', 769 'exn:fail:syntax:missing-module',
770 u'exn:fail:syntax:missing-module-path', 770 'exn:fail:syntax:missing-module-path',
771 u'exn:fail:syntax:missing-module?', u'exn:fail:syntax:unbound', 771 'exn:fail:syntax:missing-module?', 'exn:fail:syntax:unbound',
772 u'exn:fail:syntax:unbound?', u'exn:fail:syntax?', u'exn:fail:unsupported', 772 'exn:fail:syntax:unbound?', 'exn:fail:syntax?', 'exn:fail:unsupported',
773 u'exn:fail:unsupported?', u'exn:fail:user', u'exn:fail:user?', 773 'exn:fail:unsupported?', 'exn:fail:user', 'exn:fail:user?',
774 u'exn:fail?', u'exn:misc:match?', u'exn:missing-module-accessor', 774 'exn:fail?', 'exn:misc:match?', 'exn:missing-module-accessor',
775 u'exn:missing-module?', u'exn:srclocs-accessor', u'exn:srclocs?', u'exn?', 775 'exn:missing-module?', 'exn:srclocs-accessor', 'exn:srclocs?', 'exn?',
776 u'exp', u'expand', u'expand-once', u'expand-syntax', u'expand-syntax-once', 776 'exp', 'expand', 'expand-once', 'expand-syntax', 'expand-syntax-once',
777 u'expand-syntax-to-top-form', u'expand-to-top-form', u'expand-user-path', 777 'expand-syntax-to-top-form', 'expand-to-top-form', 'expand-user-path',
778 u'explode-path', u'expt', u'externalizable<%>', u'failure-result/c', 778 'explode-path', 'expt', 'externalizable<%>', 'failure-result/c',
779 u'false?', u'field-names', u'fifth', u'file->bytes', u'file->bytes-lines', 779 'false?', 'field-names', 'fifth', 'file->bytes', 'file->bytes-lines',
780 u'file->lines', u'file->list', u'file->string', u'file->value', 780 'file->lines', 'file->list', 'file->string', 'file->value',
781 u'file-exists?', u'file-name-from-path', u'file-or-directory-identity', 781 'file-exists?', 'file-name-from-path', 'file-or-directory-identity',
782 u'file-or-directory-modify-seconds', u'file-or-directory-permissions', 782 'file-or-directory-modify-seconds', 'file-or-directory-permissions',
783 u'file-position', u'file-position*', u'file-size', 783 'file-position', 'file-position*', 'file-size',
784 u'file-stream-buffer-mode', u'file-stream-port?', u'file-truncate', 784 'file-stream-buffer-mode', 'file-stream-port?', 'file-truncate',
785 u'filename-extension', u'filesystem-change-evt', 785 'filename-extension', 'filesystem-change-evt',
786 u'filesystem-change-evt-cancel', u'filesystem-change-evt?', 786 'filesystem-change-evt-cancel', 'filesystem-change-evt?',
787 u'filesystem-root-list', u'filter', u'filter-map', u'filter-not', 787 'filesystem-root-list', 'filter', 'filter-map', 'filter-not',
788 u'filter-read-input-port', u'find-executable-path', u'find-files', 788 'filter-read-input-port', 'find-executable-path', 'find-files',
789 u'find-library-collection-links', u'find-library-collection-paths', 789 'find-library-collection-links', 'find-library-collection-paths',
790 u'find-relative-path', u'find-system-path', u'findf', u'first', 790 'find-relative-path', 'find-system-path', 'findf', 'first',
791 u'first-or/c', u'fixnum?', u'flat-contract', u'flat-contract-predicate', 791 'first-or/c', 'fixnum?', 'flat-contract', 'flat-contract-predicate',
792 u'flat-contract-property?', u'flat-contract?', u'flat-named-contract', 792 'flat-contract-property?', 'flat-contract?', 'flat-named-contract',
793 u'flatten', u'floating-point-bytes->real', u'flonum?', u'floor', 793 'flatten', 'floating-point-bytes->real', 'flonum?', 'floor',
794 u'flush-output', u'fold-files', u'foldl', u'foldr', u'for-each', u'force', 794 'flush-output', 'fold-files', 'foldl', 'foldr', 'for-each', 'force',
795 u'format', u'fourth', u'fprintf', u'free-identifier=?', 795 'format', 'fourth', 'fprintf', 'free-identifier=?',
796 u'free-label-identifier=?', u'free-template-identifier=?', 796 'free-label-identifier=?', 'free-template-identifier=?',
797 u'free-transformer-identifier=?', u'fsemaphore-count', u'fsemaphore-post', 797 'free-transformer-identifier=?', 'fsemaphore-count', 'fsemaphore-post',
798 u'fsemaphore-try-wait?', u'fsemaphore-wait', u'fsemaphore?', u'future', 798 'fsemaphore-try-wait?', 'fsemaphore-wait', 'fsemaphore?', 'future',
799 u'future?', u'futures-enabled?', u'gcd', u'generate-member-key', 799 'future?', 'futures-enabled?', 'gcd', 'generate-member-key',
800 u'generate-temporaries', u'generic-set?', u'generic?', u'gensym', 800 'generate-temporaries', 'generic-set?', 'generic?', 'gensym',
801 u'get-output-bytes', u'get-output-string', u'get-preference', 801 'get-output-bytes', 'get-output-string', 'get-preference',
802 u'get/build-late-neg-projection', u'get/build-val-first-projection', 802 'get/build-late-neg-projection', 'get/build-val-first-projection',
803 u'getenv', u'global-port-print-handler', u'group-by', u'group-execute-bit', 803 'getenv', 'global-port-print-handler', 'group-by', 'group-execute-bit',
804 u'group-read-bit', u'group-write-bit', u'guard-evt', u'handle-evt', 804 'group-read-bit', 'group-write-bit', 'guard-evt', 'handle-evt',
805 u'handle-evt?', u'has-blame?', u'has-contract?', u'hash', u'hash->list', 805 'handle-evt?', 'has-blame?', 'has-contract?', 'hash', 'hash->list',
806 u'hash-clear', u'hash-clear!', u'hash-copy', u'hash-copy-clear', 806 'hash-clear', 'hash-clear!', 'hash-copy', 'hash-copy-clear',
807 u'hash-count', u'hash-empty?', u'hash-eq?', u'hash-equal?', u'hash-eqv?', 807 'hash-count', 'hash-empty?', 'hash-eq?', 'hash-equal?', 'hash-eqv?',
808 u'hash-for-each', u'hash-has-key?', u'hash-iterate-first', 808 'hash-for-each', 'hash-has-key?', 'hash-iterate-first',
809 u'hash-iterate-key', u'hash-iterate-key+value', u'hash-iterate-next', 809 'hash-iterate-key', 'hash-iterate-key+value', 'hash-iterate-next',
810 u'hash-iterate-pair', u'hash-iterate-value', u'hash-keys', u'hash-map', 810 'hash-iterate-pair', 'hash-iterate-value', 'hash-keys', 'hash-map',
811 u'hash-placeholder?', u'hash-ref', u'hash-ref!', u'hash-remove', 811 'hash-placeholder?', 'hash-ref', 'hash-ref!', 'hash-remove',
812 u'hash-remove!', u'hash-set', u'hash-set!', u'hash-set*', u'hash-set*!', 812 'hash-remove!', 'hash-set', 'hash-set!', 'hash-set*', 'hash-set*!',
813 u'hash-update', u'hash-update!', u'hash-values', u'hash-weak?', u'hash/c', 813 'hash-update', 'hash-update!', 'hash-values', 'hash-weak?', 'hash/c',
814 u'hash?', u'hasheq', u'hasheqv', u'identifier-binding', 814 'hash?', 'hasheq', 'hasheqv', 'identifier-binding',
815 u'identifier-binding-symbol', u'identifier-label-binding', 815 'identifier-binding-symbol', 'identifier-label-binding',
816 u'identifier-prune-lexical-context', 816 'identifier-prune-lexical-context',
817 u'identifier-prune-to-source-module', 817 'identifier-prune-to-source-module',
818 u'identifier-remove-from-definition-context', 818 'identifier-remove-from-definition-context',
819 u'identifier-template-binding', u'identifier-transformer-binding', 819 'identifier-template-binding', 'identifier-transformer-binding',
820 u'identifier?', u'identity', u'if/c', u'imag-part', u'immutable?', 820 'identifier?', 'identity', 'if/c', 'imag-part', 'immutable?',
821 u'impersonate-box', u'impersonate-channel', 821 'impersonate-box', 'impersonate-channel',
822 u'impersonate-continuation-mark-key', u'impersonate-hash', 822 'impersonate-continuation-mark-key', 'impersonate-hash',
823 u'impersonate-hash-set', u'impersonate-procedure', 823 'impersonate-hash-set', 'impersonate-procedure',
824 u'impersonate-procedure*', u'impersonate-prompt-tag', 824 'impersonate-procedure*', 'impersonate-prompt-tag',
825 u'impersonate-struct', u'impersonate-vector', u'impersonator-contract?', 825 'impersonate-struct', 'impersonate-vector', 'impersonator-contract?',
826 u'impersonator-ephemeron', u'impersonator-of?', 826 'impersonator-ephemeron', 'impersonator-of?',
827 u'impersonator-prop:application-mark', u'impersonator-prop:blame', 827 'impersonator-prop:application-mark', 'impersonator-prop:blame',
828 u'impersonator-prop:contracted', 828 'impersonator-prop:contracted',
829 u'impersonator-property-accessor-procedure?', u'impersonator-property?', 829 'impersonator-property-accessor-procedure?', 'impersonator-property?',
830 u'impersonator?', u'implementation?', u'implementation?/c', u'in-bytes', 830 'impersonator?', 'implementation?', 'implementation?/c', 'in-bytes',
831 u'in-bytes-lines', u'in-combinations', u'in-cycle', u'in-dict', 831 'in-bytes-lines', 'in-combinations', 'in-cycle', 'in-dict',
832 u'in-dict-keys', u'in-dict-pairs', u'in-dict-values', u'in-directory', 832 'in-dict-keys', 'in-dict-pairs', 'in-dict-values', 'in-directory',
833 u'in-hash', u'in-hash-keys', u'in-hash-pairs', u'in-hash-values', 833 'in-hash', 'in-hash-keys', 'in-hash-pairs', 'in-hash-values',
834 u'in-immutable-hash', u'in-immutable-hash-keys', 834 'in-immutable-hash', 'in-immutable-hash-keys',
835 u'in-immutable-hash-pairs', u'in-immutable-hash-values', 835 'in-immutable-hash-pairs', 'in-immutable-hash-values',
836 u'in-immutable-set', u'in-indexed', u'in-input-port-bytes', 836 'in-immutable-set', 'in-indexed', 'in-input-port-bytes',
837 u'in-input-port-chars', u'in-lines', u'in-list', u'in-mlist', 837 'in-input-port-chars', 'in-lines', 'in-list', 'in-mlist',
838 u'in-mutable-hash', u'in-mutable-hash-keys', u'in-mutable-hash-pairs', 838 'in-mutable-hash', 'in-mutable-hash-keys', 'in-mutable-hash-pairs',
839 u'in-mutable-hash-values', u'in-mutable-set', u'in-naturals', 839 'in-mutable-hash-values', 'in-mutable-set', 'in-naturals',
840 u'in-parallel', u'in-permutations', u'in-port', u'in-producer', u'in-range', 840 'in-parallel', 'in-permutations', 'in-port', 'in-producer', 'in-range',
841 u'in-sequences', u'in-set', u'in-slice', u'in-stream', u'in-string', 841 'in-sequences', 'in-set', 'in-slice', 'in-stream', 'in-string',
842 u'in-syntax', u'in-value', u'in-values*-sequence', u'in-values-sequence', 842 'in-syntax', 'in-value', 'in-values*-sequence', 'in-values-sequence',
843 u'in-vector', u'in-weak-hash', u'in-weak-hash-keys', u'in-weak-hash-pairs', 843 'in-vector', 'in-weak-hash', 'in-weak-hash-keys', 'in-weak-hash-pairs',
844 u'in-weak-hash-values', u'in-weak-set', u'inexact->exact', 844 'in-weak-hash-values', 'in-weak-set', 'inexact->exact',
845 u'inexact-real?', u'inexact?', u'infinite?', u'input-port-append', 845 'inexact-real?', 'inexact?', 'infinite?', 'input-port-append',
846 u'input-port?', u'inspector?', u'instanceof/c', u'integer->char', 846 'input-port?', 'inspector?', 'instanceof/c', 'integer->char',
847 u'integer->integer-bytes', u'integer-bytes->integer', u'integer-in', 847 'integer->integer-bytes', 'integer-bytes->integer', 'integer-in',
848 u'integer-length', u'integer-sqrt', u'integer-sqrt/remainder', u'integer?', 848 'integer-length', 'integer-sqrt', 'integer-sqrt/remainder', 'integer?',
849 u'interface->method-names', u'interface-extension?', u'interface?', 849 'interface->method-names', 'interface-extension?', 'interface?',
850 u'internal-definition-context-binding-identifiers', 850 'internal-definition-context-binding-identifiers',
851 u'internal-definition-context-introduce', 851 'internal-definition-context-introduce',
852 u'internal-definition-context-seal', u'internal-definition-context?', 852 'internal-definition-context-seal', 'internal-definition-context?',
853 u'is-a?', u'is-a?/c', u'keyword->string', u'keyword-apply', u'keyword<?', 853 'is-a?', 'is-a?/c', 'keyword->string', 'keyword-apply', 'keyword<?',
854 u'keyword?', u'keywords-match', u'kill-thread', u'last', u'last-pair', 854 'keyword?', 'keywords-match', 'kill-thread', 'last', 'last-pair',
855 u'lcm', u'length', u'liberal-define-context?', u'link-exists?', u'list', 855 'lcm', 'length', 'liberal-define-context?', 'link-exists?', 'list',
856 u'list*', u'list*of', u'list->bytes', u'list->mutable-set', 856 'list*', 'list*of', 'list->bytes', 'list->mutable-set',
857 u'list->mutable-seteq', u'list->mutable-seteqv', u'list->set', 857 'list->mutable-seteq', 'list->mutable-seteqv', 'list->set',
858 u'list->seteq', u'list->seteqv', u'list->string', u'list->vector', 858 'list->seteq', 'list->seteqv', 'list->string', 'list->vector',
859 u'list->weak-set', u'list->weak-seteq', u'list->weak-seteqv', 859 'list->weak-set', 'list->weak-seteq', 'list->weak-seteqv',
860 u'list-contract?', u'list-prefix?', u'list-ref', u'list-set', u'list-tail', 860 'list-contract?', 'list-prefix?', 'list-ref', 'list-set', 'list-tail',
861 u'list-update', u'list/c', u'list?', u'listen-port-number?', u'listof', 861 'list-update', 'list/c', 'list?', 'listen-port-number?', 'listof',
862 u'load', u'load-extension', u'load-on-demand-enabled', u'load-relative', 862 'load', 'load-extension', 'load-on-demand-enabled', 'load-relative',
863 u'load-relative-extension', u'load/cd', u'load/use-compiled', 863 'load-relative-extension', 'load/cd', 'load/use-compiled',
864 u'local-expand', u'local-expand/capture-lifts', 864 'local-expand', 'local-expand/capture-lifts',
865 u'local-transformer-expand', u'local-transformer-expand/capture-lifts', 865 'local-transformer-expand', 'local-transformer-expand/capture-lifts',
866 u'locale-string-encoding', u'log', u'log-all-levels', u'log-level-evt', 866 'locale-string-encoding', 'log', 'log-all-levels', 'log-level-evt',
867 u'log-level?', u'log-max-level', u'log-message', u'log-receiver?', 867 'log-level?', 'log-max-level', 'log-message', 'log-receiver?',
868 u'logger-name', u'logger?', u'magnitude', u'make-arity-at-least', 868 'logger-name', 'logger?', 'magnitude', 'make-arity-at-least',
869 u'make-base-empty-namespace', u'make-base-namespace', u'make-bytes', 869 'make-base-empty-namespace', 'make-base-namespace', 'make-bytes',
870 u'make-channel', u'make-chaperone-contract', 870 'make-channel', 'make-chaperone-contract',
871 u'make-continuation-mark-key', u'make-continuation-prompt-tag', 871 'make-continuation-mark-key', 'make-continuation-prompt-tag',
872 u'make-contract', u'make-custodian', u'make-custodian-box', 872 'make-contract', 'make-custodian', 'make-custodian-box',
873 u'make-custom-hash', u'make-custom-hash-types', u'make-custom-set', 873 'make-custom-hash', 'make-custom-hash-types', 'make-custom-set',
874 u'make-custom-set-types', u'make-date', u'make-date*', 874 'make-custom-set-types', 'make-date', 'make-date*',
875 u'make-derived-parameter', u'make-directory', u'make-directory*', 875 'make-derived-parameter', 'make-directory', 'make-directory*',
876 u'make-do-sequence', u'make-empty-namespace', 876 'make-do-sequence', 'make-empty-namespace',
877 u'make-environment-variables', u'make-ephemeron', u'make-exn', 877 'make-environment-variables', 'make-ephemeron', 'make-exn',
878 u'make-exn:break', u'make-exn:break:hang-up', u'make-exn:break:terminate', 878 'make-exn:break', 'make-exn:break:hang-up', 'make-exn:break:terminate',
879 u'make-exn:fail', u'make-exn:fail:contract', 879 'make-exn:fail', 'make-exn:fail:contract',
880 u'make-exn:fail:contract:arity', u'make-exn:fail:contract:blame', 880 'make-exn:fail:contract:arity', 'make-exn:fail:contract:blame',
881 u'make-exn:fail:contract:continuation', 881 'make-exn:fail:contract:continuation',
882 u'make-exn:fail:contract:divide-by-zero', 882 'make-exn:fail:contract:divide-by-zero',
883 u'make-exn:fail:contract:non-fixnum-result', 883 'make-exn:fail:contract:non-fixnum-result',
884 u'make-exn:fail:contract:variable', u'make-exn:fail:filesystem', 884 'make-exn:fail:contract:variable', 'make-exn:fail:filesystem',
885 u'make-exn:fail:filesystem:errno', u'make-exn:fail:filesystem:exists', 885 'make-exn:fail:filesystem:errno', 'make-exn:fail:filesystem:exists',
886 u'make-exn:fail:filesystem:missing-module', 886 'make-exn:fail:filesystem:missing-module',
887 u'make-exn:fail:filesystem:version', u'make-exn:fail:network', 887 'make-exn:fail:filesystem:version', 'make-exn:fail:network',
888 u'make-exn:fail:network:errno', u'make-exn:fail:object', 888 'make-exn:fail:network:errno', 'make-exn:fail:object',
889 u'make-exn:fail:out-of-memory', u'make-exn:fail:read', 889 'make-exn:fail:out-of-memory', 'make-exn:fail:read',
890 u'make-exn:fail:read:eof', u'make-exn:fail:read:non-char', 890 'make-exn:fail:read:eof', 'make-exn:fail:read:non-char',
891 u'make-exn:fail:syntax', u'make-exn:fail:syntax:missing-module', 891 'make-exn:fail:syntax', 'make-exn:fail:syntax:missing-module',
892 u'make-exn:fail:syntax:unbound', u'make-exn:fail:unsupported', 892 'make-exn:fail:syntax:unbound', 'make-exn:fail:unsupported',
893 u'make-exn:fail:user', u'make-file-or-directory-link', 893 'make-exn:fail:user', 'make-file-or-directory-link',
894 u'make-flat-contract', u'make-fsemaphore', u'make-generic', 894 'make-flat-contract', 'make-fsemaphore', 'make-generic',
895 u'make-handle-get-preference-locked', u'make-hash', 895 'make-handle-get-preference-locked', 'make-hash',
896 u'make-hash-placeholder', u'make-hasheq', u'make-hasheq-placeholder', 896 'make-hash-placeholder', 'make-hasheq', 'make-hasheq-placeholder',
897 u'make-hasheqv', u'make-hasheqv-placeholder', 897 'make-hasheqv', 'make-hasheqv-placeholder',
898 u'make-immutable-custom-hash', u'make-immutable-hash', 898 'make-immutable-custom-hash', 'make-immutable-hash',
899 u'make-immutable-hasheq', u'make-immutable-hasheqv', 899 'make-immutable-hasheq', 'make-immutable-hasheqv',
900 u'make-impersonator-property', u'make-input-port', 900 'make-impersonator-property', 'make-input-port',
901 u'make-input-port/read-to-peek', u'make-inspector', 901 'make-input-port/read-to-peek', 'make-inspector',
902 u'make-keyword-procedure', u'make-known-char-range-list', 902 'make-keyword-procedure', 'make-known-char-range-list',
903 u'make-limited-input-port', u'make-list', u'make-lock-file-name', 903 'make-limited-input-port', 'make-list', 'make-lock-file-name',
904 u'make-log-receiver', u'make-logger', u'make-mixin-contract', 904 'make-log-receiver', 'make-logger', 'make-mixin-contract',
905 u'make-mutable-custom-set', u'make-none/c', u'make-object', 905 'make-mutable-custom-set', 'make-none/c', 'make-object',
906 u'make-output-port', u'make-parameter', u'make-parent-directory*', 906 'make-output-port', 'make-parameter', 'make-parent-directory*',
907 u'make-phantom-bytes', u'make-pipe', u'make-pipe-with-specials', 907 'make-phantom-bytes', 'make-pipe', 'make-pipe-with-specials',
908 u'make-placeholder', u'make-plumber', u'make-polar', u'make-prefab-struct', 908 'make-placeholder', 'make-plumber', 'make-polar', 'make-prefab-struct',
909 u'make-primitive-class', u'make-proj-contract', 909 'make-primitive-class', 'make-proj-contract',
910 u'make-pseudo-random-generator', u'make-reader-graph', u'make-readtable', 910 'make-pseudo-random-generator', 'make-reader-graph', 'make-readtable',
911 u'make-rectangular', u'make-rename-transformer', 911 'make-rectangular', 'make-rename-transformer',
912 u'make-resolved-module-path', u'make-security-guard', u'make-semaphore', 912 'make-resolved-module-path', 'make-security-guard', 'make-semaphore',
913 u'make-set!-transformer', u'make-shared-bytes', u'make-sibling-inspector', 913 'make-set!-transformer', 'make-shared-bytes', 'make-sibling-inspector',
914 u'make-special-comment', u'make-srcloc', u'make-string', 914 'make-special-comment', 'make-srcloc', 'make-string',
915 u'make-struct-field-accessor', u'make-struct-field-mutator', 915 'make-struct-field-accessor', 'make-struct-field-mutator',
916 u'make-struct-type', u'make-struct-type-property', 916 'make-struct-type', 'make-struct-type-property',
917 u'make-syntax-delta-introducer', u'make-syntax-introducer', 917 'make-syntax-delta-introducer', 'make-syntax-introducer',
918 u'make-temporary-file', u'make-tentative-pretty-print-output-port', 918 'make-temporary-file', 'make-tentative-pretty-print-output-port',
919 u'make-thread-cell', u'make-thread-group', u'make-vector', 919 'make-thread-cell', 'make-thread-group', 'make-vector',
920 u'make-weak-box', u'make-weak-custom-hash', u'make-weak-custom-set', 920 'make-weak-box', 'make-weak-custom-hash', 'make-weak-custom-set',
921 u'make-weak-hash', u'make-weak-hasheq', u'make-weak-hasheqv', 921 'make-weak-hash', 'make-weak-hasheq', 'make-weak-hasheqv',
922 u'make-will-executor', u'map', u'match-equality-test', 922 'make-will-executor', 'map', 'match-equality-test',
923 u'matches-arity-exactly?', u'max', u'mcar', u'mcdr', u'mcons', u'member', 923 'matches-arity-exactly?', 'max', 'mcar', 'mcdr', 'mcons', 'member',
924 u'member-name-key-hash-code', u'member-name-key=?', u'member-name-key?', 924 'member-name-key-hash-code', 'member-name-key=?', 'member-name-key?',
925 u'memf', u'memq', u'memv', u'merge-input', u'method-in-interface?', u'min', 925 'memf', 'memq', 'memv', 'merge-input', 'method-in-interface?', 'min',
926 u'mixin-contract', u'module->exports', u'module->imports', 926 'mixin-contract', 'module->exports', 'module->imports',
927 u'module->language-info', u'module->namespace', 927 'module->language-info', 'module->namespace',
928 u'module-compiled-cross-phase-persistent?', u'module-compiled-exports', 928 'module-compiled-cross-phase-persistent?', 'module-compiled-exports',
929 u'module-compiled-imports', u'module-compiled-language-info', 929 'module-compiled-imports', 'module-compiled-language-info',
930 u'module-compiled-name', u'module-compiled-submodules', 930 'module-compiled-name', 'module-compiled-submodules',
931 u'module-declared?', u'module-path-index-join', 931 'module-declared?', 'module-path-index-join',
932 u'module-path-index-resolve', u'module-path-index-split', 932 'module-path-index-resolve', 'module-path-index-split',
933 u'module-path-index-submodule', u'module-path-index?', u'module-path?', 933 'module-path-index-submodule', 'module-path-index?', 'module-path?',
934 u'module-predefined?', u'module-provide-protected?', u'modulo', u'mpair?', 934 'module-predefined?', 'module-provide-protected?', 'modulo', 'mpair?',
935 u'mutable-set', u'mutable-seteq', u'mutable-seteqv', u'n->th', 935 'mutable-set', 'mutable-seteq', 'mutable-seteqv', 'n->th',
936 u'nack-guard-evt', u'namespace-anchor->empty-namespace', 936 'nack-guard-evt', 'namespace-anchor->empty-namespace',
937 u'namespace-anchor->namespace', u'namespace-anchor?', 937 'namespace-anchor->namespace', 'namespace-anchor?',
938 u'namespace-attach-module', u'namespace-attach-module-declaration', 938 'namespace-attach-module', 'namespace-attach-module-declaration',
939 u'namespace-base-phase', u'namespace-mapped-symbols', 939 'namespace-base-phase', 'namespace-mapped-symbols',
940 u'namespace-module-identifier', u'namespace-module-registry', 940 'namespace-module-identifier', 'namespace-module-registry',
941 u'namespace-require', u'namespace-require/constant', 941 'namespace-require', 'namespace-require/constant',
942 u'namespace-require/copy', u'namespace-require/expansion-time', 942 'namespace-require/copy', 'namespace-require/expansion-time',
943 u'namespace-set-variable-value!', u'namespace-symbol->identifier', 943 'namespace-set-variable-value!', 'namespace-symbol->identifier',
944 u'namespace-syntax-introduce', u'namespace-undefine-variable!', 944 'namespace-syntax-introduce', 'namespace-undefine-variable!',
945 u'namespace-unprotect-module', u'namespace-variable-value', u'namespace?', 945 'namespace-unprotect-module', 'namespace-variable-value', 'namespace?',
946 u'nan?', u'natural-number/c', u'negate', u'negative?', u'never-evt', 946 'nan?', 'natural-number/c', 'negate', 'negative?', 'never-evt',
947 u'new-∀/c', u'new-∃/c', u'newline', u'ninth', u'non-empty-listof', 947 'new-∀/c', 'new-∃/c', 'newline', 'ninth', 'non-empty-listof',
948 u'non-empty-string?', u'none/c', u'normal-case-path', u'normalize-arity', 948 'non-empty-string?', 'none/c', 'normal-case-path', 'normalize-arity',
949 u'normalize-path', u'normalized-arity?', u'not', u'not/c', u'null', u'null?', 949 'normalize-path', 'normalized-arity?', 'not', 'not/c', 'null', 'null?',
950 u'number->string', u'number?', u'numerator', u'object%', u'object->vector', 950 'number->string', 'number?', 'numerator', 'object%', 'object->vector',
951 u'object-info', u'object-interface', u'object-method-arity-includes?', 951 'object-info', 'object-interface', 'object-method-arity-includes?',
952 u'object-name', u'object-or-false=?', u'object=?', u'object?', u'odd?', 952 'object-name', 'object-or-false=?', 'object=?', 'object?', 'odd?',
953 u'one-of/c', u'open-input-bytes', u'open-input-file', 953 'one-of/c', 'open-input-bytes', 'open-input-file',
954 u'open-input-output-file', u'open-input-string', u'open-output-bytes', 954 'open-input-output-file', 'open-input-string', 'open-output-bytes',
955 u'open-output-file', u'open-output-nowhere', u'open-output-string', 955 'open-output-file', 'open-output-nowhere', 'open-output-string',
956 u'or/c', u'order-of-magnitude', u'ormap', u'other-execute-bit', 956 'or/c', 'order-of-magnitude', 'ormap', 'other-execute-bit',
957 u'other-read-bit', u'other-write-bit', u'output-port?', u'pair?', 957 'other-read-bit', 'other-write-bit', 'output-port?', 'pair?',
958 u'parameter-procedure=?', u'parameter/c', u'parameter?', 958 'parameter-procedure=?', 'parameter/c', 'parameter?',
959 u'parameterization?', u'parse-command-line', u'partition', u'path->bytes', 959 'parameterization?', 'parse-command-line', 'partition', 'path->bytes',
960 u'path->complete-path', u'path->directory-path', u'path->string', 960 'path->complete-path', 'path->directory-path', 'path->string',
961 u'path-add-suffix', u'path-convention-type', u'path-element->bytes', 961 'path-add-suffix', 'path-convention-type', 'path-element->bytes',
962 u'path-element->string', u'path-element?', u'path-for-some-system?', 962 'path-element->string', 'path-element?', 'path-for-some-system?',
963 u'path-list-string->path-list', u'path-only', u'path-replace-suffix', 963 'path-list-string->path-list', 'path-only', 'path-replace-suffix',
964 u'path-string?', u'path<?', u'path?', u'pathlist-closure', u'peek-byte', 964 'path-string?', 'path<?', 'path?', 'pathlist-closure', 'peek-byte',
965 u'peek-byte-or-special', u'peek-bytes', u'peek-bytes!', u'peek-bytes!-evt', 965 'peek-byte-or-special', 'peek-bytes', 'peek-bytes!', 'peek-bytes!-evt',
966 u'peek-bytes-avail!', u'peek-bytes-avail!*', u'peek-bytes-avail!-evt', 966 'peek-bytes-avail!', 'peek-bytes-avail!*', 'peek-bytes-avail!-evt',
967 u'peek-bytes-avail!/enable-break', u'peek-bytes-evt', u'peek-char', 967 'peek-bytes-avail!/enable-break', 'peek-bytes-evt', 'peek-char',
968 u'peek-char-or-special', u'peek-string', u'peek-string!', 968 'peek-char-or-special', 'peek-string', 'peek-string!',
969 u'peek-string!-evt', u'peek-string-evt', u'peeking-input-port', 969 'peek-string!-evt', 'peek-string-evt', 'peeking-input-port',
970 u'permutations', u'phantom-bytes?', u'pi', u'pi.f', u'pipe-content-length', 970 'permutations', 'phantom-bytes?', 'pi', 'pi.f', 'pipe-content-length',
971 u'place-break', u'place-channel', u'place-channel-get', 971 'place-break', 'place-channel', 'place-channel-get',
972 u'place-channel-put', u'place-channel-put/get', u'place-channel?', 972 'place-channel-put', 'place-channel-put/get', 'place-channel?',
973 u'place-dead-evt', u'place-enabled?', u'place-kill', u'place-location?', 973 'place-dead-evt', 'place-enabled?', 'place-kill', 'place-location?',
974 u'place-message-allowed?', u'place-sleep', u'place-wait', u'place?', 974 'place-message-allowed?', 'place-sleep', 'place-wait', 'place?',
975 u'placeholder-get', u'placeholder-set!', u'placeholder?', 975 'placeholder-get', 'placeholder-set!', 'placeholder?',
976 u'plumber-add-flush!', u'plumber-flush-all', 976 'plumber-add-flush!', 'plumber-flush-all',
977 u'plumber-flush-handle-remove!', u'plumber-flush-handle?', u'plumber?', 977 'plumber-flush-handle-remove!', 'plumber-flush-handle?', 'plumber?',
978 u'poll-guard-evt', u'port->bytes', u'port->bytes-lines', u'port->lines', 978 'poll-guard-evt', 'port->bytes', 'port->bytes-lines', 'port->lines',
979 u'port->list', u'port->string', u'port-closed-evt', u'port-closed?', 979 'port->list', 'port->string', 'port-closed-evt', 'port-closed?',
980 u'port-commit-peeked', u'port-count-lines!', u'port-count-lines-enabled', 980 'port-commit-peeked', 'port-count-lines!', 'port-count-lines-enabled',
981 u'port-counts-lines?', u'port-display-handler', u'port-file-identity', 981 'port-counts-lines?', 'port-display-handler', 'port-file-identity',
982 u'port-file-unlock', u'port-next-location', u'port-number?', 982 'port-file-unlock', 'port-next-location', 'port-number?',
983 u'port-print-handler', u'port-progress-evt', 983 'port-print-handler', 'port-progress-evt',
984 u'port-provides-progress-evts?', u'port-read-handler', 984 'port-provides-progress-evts?', 'port-read-handler',
985 u'port-try-file-lock?', u'port-write-handler', u'port-writes-atomic?', 985 'port-try-file-lock?', 'port-write-handler', 'port-writes-atomic?',
986 u'port-writes-special?', u'port?', u'positive?', u'predicate/c', 986 'port-writes-special?', 'port?', 'positive?', 'predicate/c',
987 u'prefab-key->struct-type', u'prefab-key?', u'prefab-struct-key', 987 'prefab-key->struct-type', 'prefab-key?', 'prefab-struct-key',
988 u'preferences-lock-file-mode', u'pregexp', u'pregexp?', u'pretty-display', 988 'preferences-lock-file-mode', 'pregexp', 'pregexp?', 'pretty-display',
989 u'pretty-format', u'pretty-print', u'pretty-print-.-symbol-without-bars', 989 'pretty-format', 'pretty-print', 'pretty-print-.-symbol-without-bars',
990 u'pretty-print-abbreviate-read-macros', u'pretty-print-columns', 990 'pretty-print-abbreviate-read-macros', 'pretty-print-columns',
991 u'pretty-print-current-style-table', u'pretty-print-depth', 991 'pretty-print-current-style-table', 'pretty-print-depth',
992 u'pretty-print-exact-as-decimal', u'pretty-print-extend-style-table', 992 'pretty-print-exact-as-decimal', 'pretty-print-extend-style-table',
993 u'pretty-print-handler', u'pretty-print-newline', 993 'pretty-print-handler', 'pretty-print-newline',
994 u'pretty-print-post-print-hook', u'pretty-print-pre-print-hook', 994 'pretty-print-post-print-hook', 'pretty-print-pre-print-hook',
995 u'pretty-print-print-hook', u'pretty-print-print-line', 995 'pretty-print-print-hook', 'pretty-print-print-line',
996 u'pretty-print-remap-stylable', u'pretty-print-show-inexactness', 996 'pretty-print-remap-stylable', 'pretty-print-show-inexactness',
997 u'pretty-print-size-hook', u'pretty-print-style-table?', 997 'pretty-print-size-hook', 'pretty-print-style-table?',
998 u'pretty-printing', u'pretty-write', u'primitive-closure?', 998 'pretty-printing', 'pretty-write', 'primitive-closure?',
999 u'primitive-result-arity', u'primitive?', u'print', u'print-as-expression', 999 'primitive-result-arity', 'primitive?', 'print', 'print-as-expression',
1000 u'print-boolean-long-form', u'print-box', u'print-graph', 1000 'print-boolean-long-form', 'print-box', 'print-graph',
1001 u'print-hash-table', u'print-mpair-curly-braces', 1001 'print-hash-table', 'print-mpair-curly-braces',
1002 u'print-pair-curly-braces', u'print-reader-abbreviations', 1002 'print-pair-curly-braces', 'print-reader-abbreviations',
1003 u'print-struct', u'print-syntax-width', u'print-unreadable', 1003 'print-struct', 'print-syntax-width', 'print-unreadable',
1004 u'print-vector-length', u'printable/c', u'printable<%>', u'printf', 1004 'print-vector-length', 'printable/c', 'printable<%>', 'printf',
1005 u'println', u'procedure->method', u'procedure-arity', 1005 'println', 'procedure->method', 'procedure-arity',
1006 u'procedure-arity-includes/c', u'procedure-arity-includes?', 1006 'procedure-arity-includes/c', 'procedure-arity-includes?',
1007 u'procedure-arity?', u'procedure-closure-contents-eq?', 1007 'procedure-arity?', 'procedure-closure-contents-eq?',
1008 u'procedure-extract-target', u'procedure-keywords', 1008 'procedure-extract-target', 'procedure-keywords',
1009 u'procedure-reduce-arity', u'procedure-reduce-keyword-arity', 1009 'procedure-reduce-arity', 'procedure-reduce-keyword-arity',
1010 u'procedure-rename', u'procedure-result-arity', u'procedure-specialize', 1010 'procedure-rename', 'procedure-result-arity', 'procedure-specialize',
1011 u'procedure-struct-type?', u'procedure?', u'process', u'process*', 1011 'procedure-struct-type?', 'procedure?', 'process', 'process*',
1012 u'process*/ports', u'process/ports', u'processor-count', u'progress-evt?', 1012 'process*/ports', 'process/ports', 'processor-count', 'progress-evt?',
1013 u'promise-forced?', u'promise-running?', u'promise/c', u'promise/name?', 1013 'promise-forced?', 'promise-running?', 'promise/c', 'promise/name?',
1014 u'promise?', u'prop:arity-string', u'prop:arrow-contract', 1014 'promise?', 'prop:arity-string', 'prop:arrow-contract',
1015 u'prop:arrow-contract-get-info', u'prop:arrow-contract?', u'prop:blame', 1015 'prop:arrow-contract-get-info', 'prop:arrow-contract?', 'prop:blame',
1016 u'prop:chaperone-contract', u'prop:checked-procedure', u'prop:contract', 1016 'prop:chaperone-contract', 'prop:checked-procedure', 'prop:contract',
1017 u'prop:contracted', u'prop:custom-print-quotable', u'prop:custom-write', 1017 'prop:contracted', 'prop:custom-print-quotable', 'prop:custom-write',
1018 u'prop:dict', u'prop:dict/contract', u'prop:equal+hash', u'prop:evt', 1018 'prop:dict', 'prop:dict/contract', 'prop:equal+hash', 'prop:evt',
1019 u'prop:exn:missing-module', u'prop:exn:srclocs', 1019 'prop:exn:missing-module', 'prop:exn:srclocs',
1020 u'prop:expansion-contexts', u'prop:flat-contract', 1020 'prop:expansion-contexts', 'prop:flat-contract',
1021 u'prop:impersonator-of', u'prop:input-port', 1021 'prop:impersonator-of', 'prop:input-port',
1022 u'prop:liberal-define-context', u'prop:object-name', 1022 'prop:liberal-define-context', 'prop:object-name',
1023 u'prop:opt-chaperone-contract', u'prop:opt-chaperone-contract-get-test', 1023 'prop:opt-chaperone-contract', 'prop:opt-chaperone-contract-get-test',
1024 u'prop:opt-chaperone-contract?', u'prop:orc-contract', 1024 'prop:opt-chaperone-contract?', 'prop:orc-contract',
1025 u'prop:orc-contract-get-subcontracts', u'prop:orc-contract?', 1025 'prop:orc-contract-get-subcontracts', 'prop:orc-contract?',
1026 u'prop:output-port', u'prop:place-location', u'prop:procedure', 1026 'prop:output-port', 'prop:place-location', 'prop:procedure',
1027 u'prop:recursive-contract', u'prop:recursive-contract-unroll', 1027 'prop:recursive-contract', 'prop:recursive-contract-unroll',
1028 u'prop:recursive-contract?', u'prop:rename-transformer', u'prop:sequence', 1028 'prop:recursive-contract?', 'prop:rename-transformer', 'prop:sequence',
1029 u'prop:set!-transformer', u'prop:stream', u'proper-subset?', 1029 'prop:set!-transformer', 'prop:stream', 'proper-subset?',
1030 u'pseudo-random-generator->vector', u'pseudo-random-generator-vector?', 1030 'pseudo-random-generator->vector', 'pseudo-random-generator-vector?',
1031 u'pseudo-random-generator?', u'put-preferences', u'putenv', u'quotient', 1031 'pseudo-random-generator?', 'put-preferences', 'putenv', 'quotient',
1032 u'quotient/remainder', u'radians->degrees', u'raise', 1032 'quotient/remainder', 'radians->degrees', 'raise',
1033 u'raise-argument-error', u'raise-arguments-error', u'raise-arity-error', 1033 'raise-argument-error', 'raise-arguments-error', 'raise-arity-error',
1034 u'raise-blame-error', u'raise-contract-error', u'raise-mismatch-error', 1034 'raise-blame-error', 'raise-contract-error', 'raise-mismatch-error',
1035 u'raise-not-cons-blame-error', u'raise-range-error', 1035 'raise-not-cons-blame-error', 'raise-range-error',
1036 u'raise-result-error', u'raise-syntax-error', u'raise-type-error', 1036 'raise-result-error', 'raise-syntax-error', 'raise-type-error',
1037 u'raise-user-error', u'random', u'random-seed', u'range', u'rational?', 1037 'raise-user-error', 'random', 'random-seed', 'range', 'rational?',
1038 u'rationalize', u'read', u'read-accept-bar-quote', u'read-accept-box', 1038 'rationalize', 'read', 'read-accept-bar-quote', 'read-accept-box',
1039 u'read-accept-compiled', u'read-accept-dot', u'read-accept-graph', 1039 'read-accept-compiled', 'read-accept-dot', 'read-accept-graph',
1040 u'read-accept-infix-dot', u'read-accept-lang', u'read-accept-quasiquote', 1040 'read-accept-infix-dot', 'read-accept-lang', 'read-accept-quasiquote',
1041 u'read-accept-reader', u'read-byte', u'read-byte-or-special', 1041 'read-accept-reader', 'read-byte', 'read-byte-or-special',
1042 u'read-bytes', u'read-bytes!', u'read-bytes!-evt', u'read-bytes-avail!', 1042 'read-bytes', 'read-bytes!', 'read-bytes!-evt', 'read-bytes-avail!',
1043 u'read-bytes-avail!*', u'read-bytes-avail!-evt', 1043 'read-bytes-avail!*', 'read-bytes-avail!-evt',
1044 u'read-bytes-avail!/enable-break', u'read-bytes-evt', u'read-bytes-line', 1044 'read-bytes-avail!/enable-break', 'read-bytes-evt', 'read-bytes-line',
1045 u'read-bytes-line-evt', u'read-case-sensitive', u'read-cdot', u'read-char', 1045 'read-bytes-line-evt', 'read-case-sensitive', 'read-cdot', 'read-char',
1046 u'read-char-or-special', u'read-curly-brace-as-paren', 1046 'read-char-or-special', 'read-curly-brace-as-paren',
1047 u'read-curly-brace-with-tag', u'read-decimal-as-inexact', 1047 'read-curly-brace-with-tag', 'read-decimal-as-inexact',
1048 u'read-eval-print-loop', u'read-language', u'read-line', u'read-line-evt', 1048 'read-eval-print-loop', 'read-language', 'read-line', 'read-line-evt',
1049 u'read-on-demand-source', u'read-square-bracket-as-paren', 1049 'read-on-demand-source', 'read-square-bracket-as-paren',
1050 u'read-square-bracket-with-tag', u'read-string', u'read-string!', 1050 'read-square-bracket-with-tag', 'read-string', 'read-string!',
1051 u'read-string!-evt', u'read-string-evt', u'read-syntax', 1051 'read-string!-evt', 'read-string-evt', 'read-syntax',
1052 u'read-syntax/recursive', u'read/recursive', u'readtable-mapping', 1052 'read-syntax/recursive', 'read/recursive', 'readtable-mapping',
1053 u'readtable?', u'real->decimal-string', u'real->double-flonum', 1053 'readtable?', 'real->decimal-string', 'real->double-flonum',
1054 u'real->floating-point-bytes', u'real->single-flonum', u'real-in', 1054 'real->floating-point-bytes', 'real->single-flonum', 'real-in',
1055 u'real-part', u'real?', u'reencode-input-port', u'reencode-output-port', 1055 'real-part', 'real?', 'reencode-input-port', 'reencode-output-port',
1056 u'regexp', u'regexp-match', u'regexp-match*', u'regexp-match-evt', 1056 'regexp', 'regexp-match', 'regexp-match*', 'regexp-match-evt',
1057 u'regexp-match-exact?', u'regexp-match-peek', 1057 'regexp-match-exact?', 'regexp-match-peek',
1058 u'regexp-match-peek-immediate', u'regexp-match-peek-positions', 1058 'regexp-match-peek-immediate', 'regexp-match-peek-positions',
1059 u'regexp-match-peek-positions*', 1059 'regexp-match-peek-positions*',
1060 u'regexp-match-peek-positions-immediate', 1060 'regexp-match-peek-positions-immediate',
1061 u'regexp-match-peek-positions-immediate/end', 1061 'regexp-match-peek-positions-immediate/end',
1062 u'regexp-match-peek-positions/end', u'regexp-match-positions', 1062 'regexp-match-peek-positions/end', 'regexp-match-positions',
1063 u'regexp-match-positions*', u'regexp-match-positions/end', 1063 'regexp-match-positions*', 'regexp-match-positions/end',
1064 u'regexp-match/end', u'regexp-match?', u'regexp-max-lookbehind', 1064 'regexp-match/end', 'regexp-match?', 'regexp-max-lookbehind',
1065 u'regexp-quote', u'regexp-replace', u'regexp-replace*', 1065 'regexp-quote', 'regexp-replace', 'regexp-replace*',
1066 u'regexp-replace-quote', u'regexp-replaces', u'regexp-split', 1066 'regexp-replace-quote', 'regexp-replaces', 'regexp-split',
1067 u'regexp-try-match', u'regexp?', u'relative-path?', u'relocate-input-port', 1067 'regexp-try-match', 'regexp?', 'relative-path?', 'relocate-input-port',
1068 u'relocate-output-port', u'remainder', u'remf', u'remf*', u'remove', 1068 'relocate-output-port', 'remainder', 'remf', 'remf*', 'remove',
1069 u'remove*', u'remove-duplicates', u'remq', u'remq*', u'remv', u'remv*', 1069 'remove*', 'remove-duplicates', 'remq', 'remq*', 'remv', 'remv*',
1070 u'rename-contract', u'rename-file-or-directory', 1070 'rename-contract', 'rename-file-or-directory',
1071 u'rename-transformer-target', u'rename-transformer?', u'replace-evt', 1071 'rename-transformer-target', 'rename-transformer?', 'replace-evt',
1072 u'reroot-path', u'resolve-path', u'resolved-module-path-name', 1072 'reroot-path', 'resolve-path', 'resolved-module-path-name',
1073 u'resolved-module-path?', u'rest', u'reverse', u'round', u'second', 1073 'resolved-module-path?', 'rest', 'reverse', 'round', 'second',
1074 u'seconds->date', u'security-guard?', u'semaphore-peek-evt', 1074 'seconds->date', 'security-guard?', 'semaphore-peek-evt',
1075 u'semaphore-peek-evt?', u'semaphore-post', u'semaphore-try-wait?', 1075 'semaphore-peek-evt?', 'semaphore-post', 'semaphore-try-wait?',
1076 u'semaphore-wait', u'semaphore-wait/enable-break', u'semaphore?', 1076 'semaphore-wait', 'semaphore-wait/enable-break', 'semaphore?',
1077 u'sequence->list', u'sequence->stream', u'sequence-add-between', 1077 'sequence->list', 'sequence->stream', 'sequence-add-between',
1078 u'sequence-andmap', u'sequence-append', u'sequence-count', 1078 'sequence-andmap', 'sequence-append', 'sequence-count',
1079 u'sequence-filter', u'sequence-fold', u'sequence-for-each', 1079 'sequence-filter', 'sequence-fold', 'sequence-for-each',
1080 u'sequence-generate', u'sequence-generate*', u'sequence-length', 1080 'sequence-generate', 'sequence-generate*', 'sequence-length',
1081 u'sequence-map', u'sequence-ormap', u'sequence-ref', u'sequence-tail', 1081 'sequence-map', 'sequence-ormap', 'sequence-ref', 'sequence-tail',
1082 u'sequence/c', u'sequence?', u'set', u'set!-transformer-procedure', 1082 'sequence/c', 'sequence?', 'set', 'set!-transformer-procedure',
1083 u'set!-transformer?', u'set->list', u'set->stream', u'set-add', u'set-add!', 1083 'set!-transformer?', 'set->list', 'set->stream', 'set-add', 'set-add!',
1084 u'set-box!', u'set-clear', u'set-clear!', u'set-copy', u'set-copy-clear', 1084 'set-box!', 'set-clear', 'set-clear!', 'set-copy', 'set-copy-clear',
1085 u'set-count', u'set-empty?', u'set-eq?', u'set-equal?', u'set-eqv?', 1085 'set-count', 'set-empty?', 'set-eq?', 'set-equal?', 'set-eqv?',
1086 u'set-first', u'set-for-each', u'set-implements/c', u'set-implements?', 1086 'set-first', 'set-for-each', 'set-implements/c', 'set-implements?',
1087 u'set-intersect', u'set-intersect!', u'set-map', u'set-mcar!', u'set-mcdr!', 1087 'set-intersect', 'set-intersect!', 'set-map', 'set-mcar!', 'set-mcdr!',
1088 u'set-member?', u'set-mutable?', u'set-phantom-bytes!', 1088 'set-member?', 'set-mutable?', 'set-phantom-bytes!',
1089 u'set-port-next-location!', u'set-remove', u'set-remove!', u'set-rest', 1089 'set-port-next-location!', 'set-remove', 'set-remove!', 'set-rest',
1090 u'set-some-basic-contracts!', u'set-subtract', u'set-subtract!', 1090 'set-some-basic-contracts!', 'set-subtract', 'set-subtract!',
1091 u'set-symmetric-difference', u'set-symmetric-difference!', u'set-union', 1091 'set-symmetric-difference', 'set-symmetric-difference!', 'set-union',
1092 u'set-union!', u'set-weak?', u'set/c', u'set=?', u'set?', u'seteq', u'seteqv', 1092 'set-union!', 'set-weak?', 'set/c', 'set=?', 'set?', 'seteq', 'seteqv',
1093 u'seventh', u'sgn', u'shared-bytes', u'shell-execute', u'shrink-path-wrt', 1093 'seventh', 'sgn', 'shared-bytes', 'shell-execute', 'shrink-path-wrt',
1094 u'shuffle', u'simple-form-path', u'simplify-path', u'sin', 1094 'shuffle', 'simple-form-path', 'simplify-path', 'sin',
1095 u'single-flonum?', u'sinh', u'sixth', u'skip-projection-wrapper?', u'sleep', 1095 'single-flonum?', 'sinh', 'sixth', 'skip-projection-wrapper?', 'sleep',
1096 u'some-system-path->string', u'sort', u'special-comment-value', 1096 'some-system-path->string', 'sort', 'special-comment-value',
1097 u'special-comment?', u'special-filter-input-port', u'split-at', 1097 'special-comment?', 'special-filter-input-port', 'split-at',
1098 u'split-at-right', u'split-common-prefix', u'split-path', u'splitf-at', 1098 'split-at-right', 'split-common-prefix', 'split-path', 'splitf-at',
1099 u'splitf-at-right', u'sqr', u'sqrt', u'srcloc', u'srcloc->string', 1099 'splitf-at-right', 'sqr', 'sqrt', 'srcloc', 'srcloc->string',
1100 u'srcloc-column', u'srcloc-line', u'srcloc-position', u'srcloc-source', 1100 'srcloc-column', 'srcloc-line', 'srcloc-position', 'srcloc-source',
1101 u'srcloc-span', u'srcloc?', u'stop-after', u'stop-before', u'stream->list', 1101 'srcloc-span', 'srcloc?', 'stop-after', 'stop-before', 'stream->list',
1102 u'stream-add-between', u'stream-andmap', u'stream-append', u'stream-count', 1102 'stream-add-between', 'stream-andmap', 'stream-append', 'stream-count',
1103 u'stream-empty?', u'stream-filter', u'stream-first', u'stream-fold', 1103 'stream-empty?', 'stream-filter', 'stream-first', 'stream-fold',
1104 u'stream-for-each', u'stream-length', u'stream-map', u'stream-ormap', 1104 'stream-for-each', 'stream-length', 'stream-map', 'stream-ormap',
1105 u'stream-ref', u'stream-rest', u'stream-tail', u'stream/c', u'stream?', 1105 'stream-ref', 'stream-rest', 'stream-tail', 'stream/c', 'stream?',
1106 u'string', u'string->bytes/latin-1', u'string->bytes/locale', 1106 'string', 'string->bytes/latin-1', 'string->bytes/locale',
1107 u'string->bytes/utf-8', u'string->immutable-string', u'string->keyword', 1107 'string->bytes/utf-8', 'string->immutable-string', 'string->keyword',
1108 u'string->list', u'string->number', u'string->path', 1108 'string->list', 'string->number', 'string->path',
1109 u'string->path-element', u'string->some-system-path', u'string->symbol', 1109 'string->path-element', 'string->some-system-path', 'string->symbol',
1110 u'string->uninterned-symbol', u'string->unreadable-symbol', 1110 'string->uninterned-symbol', 'string->unreadable-symbol',
1111 u'string-append', u'string-append*', u'string-ci<=?', u'string-ci<?', 1111 'string-append', 'string-append*', 'string-ci<=?', 'string-ci<?',
1112 u'string-ci=?', u'string-ci>=?', u'string-ci>?', u'string-contains?', 1112 'string-ci=?', 'string-ci>=?', 'string-ci>?', 'string-contains?',
1113 u'string-copy', u'string-copy!', u'string-downcase', 1113 'string-copy', 'string-copy!', 'string-downcase',
1114 u'string-environment-variable-name?', u'string-fill!', u'string-foldcase', 1114 'string-environment-variable-name?', 'string-fill!', 'string-foldcase',
1115 u'string-join', u'string-len/c', u'string-length', u'string-locale-ci<?', 1115 'string-join', 'string-len/c', 'string-length', 'string-locale-ci<?',
1116 u'string-locale-ci=?', u'string-locale-ci>?', u'string-locale-downcase', 1116 'string-locale-ci=?', 'string-locale-ci>?', 'string-locale-downcase',
1117 u'string-locale-upcase', u'string-locale<?', u'string-locale=?', 1117 'string-locale-upcase', 'string-locale<?', 'string-locale=?',
1118 u'string-locale>?', u'string-no-nuls?', u'string-normalize-nfc', 1118 'string-locale>?', 'string-no-nuls?', 'string-normalize-nfc',
1119 u'string-normalize-nfd', u'string-normalize-nfkc', 1119 'string-normalize-nfd', 'string-normalize-nfkc',
1120 u'string-normalize-nfkd', u'string-normalize-spaces', u'string-port?', 1120 'string-normalize-nfkd', 'string-normalize-spaces', 'string-port?',
1121 u'string-prefix?', u'string-ref', u'string-replace', u'string-set!', 1121 'string-prefix?', 'string-ref', 'string-replace', 'string-set!',
1122 u'string-split', u'string-suffix?', u'string-titlecase', u'string-trim', 1122 'string-split', 'string-suffix?', 'string-titlecase', 'string-trim',
1123 u'string-upcase', u'string-utf-8-length', u'string<=?', u'string<?', 1123 'string-upcase', 'string-utf-8-length', 'string<=?', 'string<?',
1124 u'string=?', u'string>=?', u'string>?', u'string?', u'struct->vector', 1124 'string=?', 'string>=?', 'string>?', 'string?', 'struct->vector',
1125 u'struct-accessor-procedure?', u'struct-constructor-procedure?', 1125 'struct-accessor-procedure?', 'struct-constructor-procedure?',
1126 u'struct-info', u'struct-mutator-procedure?', 1126 'struct-info', 'struct-mutator-procedure?',
1127 u'struct-predicate-procedure?', u'struct-type-info', 1127 'struct-predicate-procedure?', 'struct-type-info',
1128 u'struct-type-make-constructor', u'struct-type-make-predicate', 1128 'struct-type-make-constructor', 'struct-type-make-predicate',
1129 u'struct-type-property-accessor-procedure?', u'struct-type-property/c', 1129 'struct-type-property-accessor-procedure?', 'struct-type-property/c',
1130 u'struct-type-property?', u'struct-type?', u'struct:arity-at-least', 1130 'struct-type-property?', 'struct-type?', 'struct:arity-at-least',
1131 u'struct:arrow-contract-info', u'struct:date', u'struct:date*', 1131 'struct:arrow-contract-info', 'struct:date', 'struct:date*',
1132 u'struct:exn', u'struct:exn:break', u'struct:exn:break:hang-up', 1132 'struct:exn', 'struct:exn:break', 'struct:exn:break:hang-up',
1133 u'struct:exn:break:terminate', u'struct:exn:fail', 1133 'struct:exn:break:terminate', 'struct:exn:fail',
1134 u'struct:exn:fail:contract', u'struct:exn:fail:contract:arity', 1134 'struct:exn:fail:contract', 'struct:exn:fail:contract:arity',
1135 u'struct:exn:fail:contract:blame', 1135 'struct:exn:fail:contract:blame',
1136 u'struct:exn:fail:contract:continuation', 1136 'struct:exn:fail:contract:continuation',
1137 u'struct:exn:fail:contract:divide-by-zero', 1137 'struct:exn:fail:contract:divide-by-zero',
1138 u'struct:exn:fail:contract:non-fixnum-result', 1138 'struct:exn:fail:contract:non-fixnum-result',
1139 u'struct:exn:fail:contract:variable', u'struct:exn:fail:filesystem', 1139 'struct:exn:fail:contract:variable', 'struct:exn:fail:filesystem',
1140 u'struct:exn:fail:filesystem:errno', 1140 'struct:exn:fail:filesystem:errno',
1141 u'struct:exn:fail:filesystem:exists', 1141 'struct:exn:fail:filesystem:exists',
1142 u'struct:exn:fail:filesystem:missing-module', 1142 'struct:exn:fail:filesystem:missing-module',
1143 u'struct:exn:fail:filesystem:version', u'struct:exn:fail:network', 1143 'struct:exn:fail:filesystem:version', 'struct:exn:fail:network',
1144 u'struct:exn:fail:network:errno', u'struct:exn:fail:object', 1144 'struct:exn:fail:network:errno', 'struct:exn:fail:object',
1145 u'struct:exn:fail:out-of-memory', u'struct:exn:fail:read', 1145 'struct:exn:fail:out-of-memory', 'struct:exn:fail:read',
1146 u'struct:exn:fail:read:eof', u'struct:exn:fail:read:non-char', 1146 'struct:exn:fail:read:eof', 'struct:exn:fail:read:non-char',
1147 u'struct:exn:fail:syntax', u'struct:exn:fail:syntax:missing-module', 1147 'struct:exn:fail:syntax', 'struct:exn:fail:syntax:missing-module',
1148 u'struct:exn:fail:syntax:unbound', u'struct:exn:fail:unsupported', 1148 'struct:exn:fail:syntax:unbound', 'struct:exn:fail:unsupported',
1149 u'struct:exn:fail:user', u'struct:srcloc', 1149 'struct:exn:fail:user', 'struct:srcloc',
1150 u'struct:wrapped-extra-arg-arrow', u'struct?', u'sub1', u'subbytes', 1150 'struct:wrapped-extra-arg-arrow', 'struct?', 'sub1', 'subbytes',
1151 u'subclass?', u'subclass?/c', u'subprocess', u'subprocess-group-enabled', 1151 'subclass?', 'subclass?/c', 'subprocess', 'subprocess-group-enabled',
1152 u'subprocess-kill', u'subprocess-pid', u'subprocess-status', 1152 'subprocess-kill', 'subprocess-pid', 'subprocess-status',
1153 u'subprocess-wait', u'subprocess?', u'subset?', u'substring', u'suggest/c', 1153 'subprocess-wait', 'subprocess?', 'subset?', 'substring', 'suggest/c',
1154 u'symbol->string', u'symbol-interned?', u'symbol-unreadable?', u'symbol<?', 1154 'symbol->string', 'symbol-interned?', 'symbol-unreadable?', 'symbol<?',
1155 u'symbol=?', u'symbol?', u'symbols', u'sync', u'sync/enable-break', 1155 'symbol=?', 'symbol?', 'symbols', 'sync', 'sync/enable-break',
1156 u'sync/timeout', u'sync/timeout/enable-break', u'syntax->datum', 1156 'sync/timeout', 'sync/timeout/enable-break', 'syntax->datum',
1157 u'syntax->list', u'syntax-arm', u'syntax-column', u'syntax-debug-info', 1157 'syntax->list', 'syntax-arm', 'syntax-column', 'syntax-debug-info',
1158 u'syntax-disarm', u'syntax-e', u'syntax-line', 1158 'syntax-disarm', 'syntax-e', 'syntax-line',
1159 u'syntax-local-bind-syntaxes', u'syntax-local-certifier', 1159 'syntax-local-bind-syntaxes', 'syntax-local-certifier',
1160 u'syntax-local-context', u'syntax-local-expand-expression', 1160 'syntax-local-context', 'syntax-local-expand-expression',
1161 u'syntax-local-get-shadower', u'syntax-local-identifier-as-binding', 1161 'syntax-local-get-shadower', 'syntax-local-identifier-as-binding',
1162 u'syntax-local-introduce', u'syntax-local-lift-context', 1162 'syntax-local-introduce', 'syntax-local-lift-context',
1163 u'syntax-local-lift-expression', u'syntax-local-lift-module', 1163 'syntax-local-lift-expression', 'syntax-local-lift-module',
1164 u'syntax-local-lift-module-end-declaration', 1164 'syntax-local-lift-module-end-declaration',
1165 u'syntax-local-lift-provide', u'syntax-local-lift-require', 1165 'syntax-local-lift-provide', 'syntax-local-lift-require',
1166 u'syntax-local-lift-values-expression', 1166 'syntax-local-lift-values-expression',
1167 u'syntax-local-make-definition-context', 1167 'syntax-local-make-definition-context',
1168 u'syntax-local-make-delta-introducer', 1168 'syntax-local-make-delta-introducer',
1169 u'syntax-local-module-defined-identifiers', 1169 'syntax-local-module-defined-identifiers',
1170 u'syntax-local-module-exports', 1170 'syntax-local-module-exports',
1171 u'syntax-local-module-required-identifiers', u'syntax-local-name', 1171 'syntax-local-module-required-identifiers', 'syntax-local-name',
1172 u'syntax-local-phase-level', u'syntax-local-submodules', 1172 'syntax-local-phase-level', 'syntax-local-submodules',
1173 u'syntax-local-transforming-module-provides?', u'syntax-local-value', 1173 'syntax-local-transforming-module-provides?', 'syntax-local-value',
1174 u'syntax-local-value/immediate', u'syntax-original?', u'syntax-position', 1174 'syntax-local-value/immediate', 'syntax-original?', 'syntax-position',
1175 u'syntax-property', u'syntax-property-preserved?', 1175 'syntax-property', 'syntax-property-preserved?',
1176 u'syntax-property-symbol-keys', u'syntax-protect', u'syntax-rearm', 1176 'syntax-property-symbol-keys', 'syntax-protect', 'syntax-rearm',
1177 u'syntax-recertify', u'syntax-shift-phase-level', u'syntax-source', 1177 'syntax-recertify', 'syntax-shift-phase-level', 'syntax-source',
1178 u'syntax-source-module', u'syntax-span', u'syntax-taint', 1178 'syntax-source-module', 'syntax-span', 'syntax-taint',
1179 u'syntax-tainted?', u'syntax-track-origin', 1179 'syntax-tainted?', 'syntax-track-origin',
1180 u'syntax-transforming-module-expression?', 1180 'syntax-transforming-module-expression?',
1181 u'syntax-transforming-with-lifts?', u'syntax-transforming?', u'syntax/c', 1181 'syntax-transforming-with-lifts?', 'syntax-transforming?', 'syntax/c',
1182 u'syntax?', u'system', u'system*', u'system*/exit-code', 1182 'syntax?', 'system', 'system*', 'system*/exit-code',
1183 u'system-big-endian?', u'system-idle-evt', u'system-language+country', 1183 'system-big-endian?', 'system-idle-evt', 'system-language+country',
1184 u'system-library-subpath', u'system-path-convention-type', u'system-type', 1184 'system-library-subpath', 'system-path-convention-type', 'system-type',
1185 u'system/exit-code', u'tail-marks-match?', u'take', u'take-common-prefix', 1185 'system/exit-code', 'tail-marks-match?', 'take', 'take-common-prefix',
1186 u'take-right', u'takef', u'takef-right', u'tan', u'tanh', 1186 'take-right', 'takef', 'takef-right', 'tan', 'tanh',
1187 u'tcp-abandon-port', u'tcp-accept', u'tcp-accept-evt', 1187 'tcp-abandon-port', 'tcp-accept', 'tcp-accept-evt',
1188 u'tcp-accept-ready?', u'tcp-accept/enable-break', u'tcp-addresses', 1188 'tcp-accept-ready?', 'tcp-accept/enable-break', 'tcp-addresses',
1189 u'tcp-close', u'tcp-connect', u'tcp-connect/enable-break', u'tcp-listen', 1189 'tcp-close', 'tcp-connect', 'tcp-connect/enable-break', 'tcp-listen',
1190 u'tcp-listener?', u'tcp-port?', u'tentative-pretty-print-port-cancel', 1190 'tcp-listener?', 'tcp-port?', 'tentative-pretty-print-port-cancel',
1191 u'tentative-pretty-print-port-transfer', u'tenth', u'terminal-port?', 1191 'tentative-pretty-print-port-transfer', 'tenth', 'terminal-port?',
1192 u'the-unsupplied-arg', u'third', u'thread', u'thread-cell-ref', 1192 'the-unsupplied-arg', 'third', 'thread', 'thread-cell-ref',
1193 u'thread-cell-set!', u'thread-cell-values?', u'thread-cell?', 1193 'thread-cell-set!', 'thread-cell-values?', 'thread-cell?',
1194 u'thread-dead-evt', u'thread-dead?', u'thread-group?', u'thread-receive', 1194 'thread-dead-evt', 'thread-dead?', 'thread-group?', 'thread-receive',
1195 u'thread-receive-evt', u'thread-resume', u'thread-resume-evt', 1195 'thread-receive-evt', 'thread-resume', 'thread-resume-evt',
1196 u'thread-rewind-receive', u'thread-running?', u'thread-send', 1196 'thread-rewind-receive', 'thread-running?', 'thread-send',
1197 u'thread-suspend', u'thread-suspend-evt', u'thread-try-receive', 1197 'thread-suspend', 'thread-suspend-evt', 'thread-try-receive',
1198 u'thread-wait', u'thread/suspend-to-kill', u'thread?', u'time-apply', 1198 'thread-wait', 'thread/suspend-to-kill', 'thread?', 'time-apply',
1199 u'touch', u'transplant-input-port', u'transplant-output-port', u'true', 1199 'touch', 'transplant-input-port', 'transplant-output-port', 'true',
1200 u'truncate', u'udp-addresses', u'udp-bind!', u'udp-bound?', u'udp-close', 1200 'truncate', 'udp-addresses', 'udp-bind!', 'udp-bound?', 'udp-close',
1201 u'udp-connect!', u'udp-connected?', u'udp-multicast-interface', 1201 'udp-connect!', 'udp-connected?', 'udp-multicast-interface',
1202 u'udp-multicast-join-group!', u'udp-multicast-leave-group!', 1202 'udp-multicast-join-group!', 'udp-multicast-leave-group!',
1203 u'udp-multicast-loopback?', u'udp-multicast-set-interface!', 1203 'udp-multicast-loopback?', 'udp-multicast-set-interface!',
1204 u'udp-multicast-set-loopback!', u'udp-multicast-set-ttl!', 1204 'udp-multicast-set-loopback!', 'udp-multicast-set-ttl!',
1205 u'udp-multicast-ttl', u'udp-open-socket', u'udp-receive!', 1205 'udp-multicast-ttl', 'udp-open-socket', 'udp-receive!',
1206 u'udp-receive!*', u'udp-receive!-evt', u'udp-receive!/enable-break', 1206 'udp-receive!*', 'udp-receive!-evt', 'udp-receive!/enable-break',
1207 u'udp-receive-ready-evt', u'udp-send', u'udp-send*', u'udp-send-evt', 1207 'udp-receive-ready-evt', 'udp-send', 'udp-send*', 'udp-send-evt',
1208 u'udp-send-ready-evt', u'udp-send-to', u'udp-send-to*', u'udp-send-to-evt', 1208 'udp-send-ready-evt', 'udp-send-to', 'udp-send-to*', 'udp-send-to-evt',
1209 u'udp-send-to/enable-break', u'udp-send/enable-break', u'udp?', u'unbox', 1209 'udp-send-to/enable-break', 'udp-send/enable-break', 'udp?', 'unbox',
1210 u'uncaught-exception-handler', u'unit?', u'unspecified-dom', 1210 'uncaught-exception-handler', 'unit?', 'unspecified-dom',
1211 u'unsupplied-arg?', u'use-collection-link-paths', 1211 'unsupplied-arg?', 'use-collection-link-paths',
1212 u'use-compiled-file-paths', u'use-user-specific-search-paths', 1212 'use-compiled-file-paths', 'use-user-specific-search-paths',
1213 u'user-execute-bit', u'user-read-bit', u'user-write-bit', u'value-blame', 1213 'user-execute-bit', 'user-read-bit', 'user-write-bit', 'value-blame',
1214 u'value-contract', u'values', u'variable-reference->empty-namespace', 1214 'value-contract', 'values', 'variable-reference->empty-namespace',
1215 u'variable-reference->module-base-phase', 1215 'variable-reference->module-base-phase',
1216 u'variable-reference->module-declaration-inspector', 1216 'variable-reference->module-declaration-inspector',
1217 u'variable-reference->module-path-index', 1217 'variable-reference->module-path-index',
1218 u'variable-reference->module-source', u'variable-reference->namespace', 1218 'variable-reference->module-source', 'variable-reference->namespace',
1219 u'variable-reference->phase', 1219 'variable-reference->phase',
1220 u'variable-reference->resolved-module-path', 1220 'variable-reference->resolved-module-path',
1221 u'variable-reference-constant?', u'variable-reference?', u'vector', 1221 'variable-reference-constant?', 'variable-reference?', 'vector',
1222 u'vector->immutable-vector', u'vector->list', 1222 'vector->immutable-vector', 'vector->list',
1223 u'vector->pseudo-random-generator', u'vector->pseudo-random-generator!', 1223 'vector->pseudo-random-generator', 'vector->pseudo-random-generator!',
1224 u'vector->values', u'vector-append', u'vector-argmax', u'vector-argmin', 1224 'vector->values', 'vector-append', 'vector-argmax', 'vector-argmin',
1225 u'vector-copy', u'vector-copy!', u'vector-count', u'vector-drop', 1225 'vector-copy', 'vector-copy!', 'vector-count', 'vector-drop',
1226 u'vector-drop-right', u'vector-fill!', u'vector-filter', 1226 'vector-drop-right', 'vector-fill!', 'vector-filter',
1227 u'vector-filter-not', u'vector-immutable', u'vector-immutable/c', 1227 'vector-filter-not', 'vector-immutable', 'vector-immutable/c',
1228 u'vector-immutableof', u'vector-length', u'vector-map', u'vector-map!', 1228 'vector-immutableof', 'vector-length', 'vector-map', 'vector-map!',
1229 u'vector-member', u'vector-memq', u'vector-memv', u'vector-ref', 1229 'vector-member', 'vector-memq', 'vector-memv', 'vector-ref',
1230 u'vector-set!', u'vector-set*!', u'vector-set-performance-stats!', 1230 'vector-set!', 'vector-set*!', 'vector-set-performance-stats!',
1231 u'vector-split-at', u'vector-split-at-right', u'vector-take', 1231 'vector-split-at', 'vector-split-at-right', 'vector-take',
1232 u'vector-take-right', u'vector/c', u'vector?', u'vectorof', u'version', 1232 'vector-take-right', 'vector/c', 'vector?', 'vectorof', 'version',
1233 u'void', u'void?', u'weak-box-value', u'weak-box?', u'weak-set', 1233 'void', 'void?', 'weak-box-value', 'weak-box?', 'weak-set',
1234 u'weak-seteq', u'weak-seteqv', u'will-execute', u'will-executor?', 1234 'weak-seteq', 'weak-seteqv', 'will-execute', 'will-executor?',
1235 u'will-register', u'will-try-execute', u'with-input-from-bytes', 1235 'will-register', 'will-try-execute', 'with-input-from-bytes',
1236 u'with-input-from-file', u'with-input-from-string', 1236 'with-input-from-file', 'with-input-from-string',
1237 u'with-output-to-bytes', u'with-output-to-file', u'with-output-to-string', 1237 'with-output-to-bytes', 'with-output-to-file', 'with-output-to-string',
1238 u'would-be-future', u'wrap-evt', u'wrapped-extra-arg-arrow', 1238 'would-be-future', 'wrap-evt', 'wrapped-extra-arg-arrow',
1239 u'wrapped-extra-arg-arrow-extra-neg-party-argument', 1239 'wrapped-extra-arg-arrow-extra-neg-party-argument',
1240 u'wrapped-extra-arg-arrow-real-func', u'wrapped-extra-arg-arrow?', 1240 'wrapped-extra-arg-arrow-real-func', 'wrapped-extra-arg-arrow?',
1241 u'writable<%>', u'write', u'write-byte', u'write-bytes', 1241 'writable<%>', 'write', 'write-byte', 'write-bytes',
1242 u'write-bytes-avail', u'write-bytes-avail*', u'write-bytes-avail-evt', 1242 'write-bytes-avail', 'write-bytes-avail*', 'write-bytes-avail-evt',
1243 u'write-bytes-avail/enable-break', u'write-char', u'write-special', 1243 'write-bytes-avail/enable-break', 'write-char', 'write-special',
1244 u'write-special-avail*', u'write-special-evt', u'write-string', 1244 'write-special-avail*', 'write-special-evt', 'write-string',
1245 u'write-to-file', u'writeln', u'xor', u'zero?', u'~.a', u'~.s', u'~.v', u'~a', 1245 'write-to-file', 'writeln', 'xor', 'zero?', '~.a', '~.s', '~.v', '~a',
1246 u'~e', u'~r', u'~s', u'~v' 1246 '~e', '~r', '~s', '~v'
1247 ) 1247 )
1248 1248
1249 _opening_parenthesis = r'[([{]' 1249 _opening_parenthesis = r'[([{]'
1250 _closing_parenthesis = r'[)\]}]' 1250 _closing_parenthesis = r'[)\]}]'
1251 _delimiters = r'()[\]{}",\'`;\s' 1251 _delimiters = r'()[\]{}",\'`;\s'
1268 (_closing_parenthesis, Error), 1268 (_closing_parenthesis, Error),
1269 (r'(?!\Z)', Text, 'unquoted-datum') 1269 (r'(?!\Z)', Text, 'unquoted-datum')
1270 ], 1270 ],
1271 'datum': [ 1271 'datum': [
1272 (r'(?s)#;|#![ /]([^\\\n]|\\.)*', Comment), 1272 (r'(?s)#;|#![ /]([^\\\n]|\\.)*', Comment),
1273 (u';[^\\n\\r\x85\u2028\u2029]*', Comment.Single), 1273 (r';[^\n\r\x85\u2028\u2029]*', Comment.Single),
1274 (r'#\|', Comment.Multiline, 'block-comment'), 1274 (r'#\|', Comment.Multiline, 'block-comment'),
1275 1275
1276 # Whitespaces 1276 # Whitespaces
1277 (r'(?u)\s+', Text), 1277 (r'(?u)\s+', Text),
1278 1278
2275 for index, token, value in tokens: 2275 for index, token, value in tokens:
2276 yield index, token, value 2276 yield index, token, value
2277 if self._relevant(token): 2277 if self._relevant(token):
2278 if opening_paren and token == Keyword and value in self.DECLARATIONS: 2278 if opening_paren and token == Keyword and value in self.DECLARATIONS:
2279 declaration = value 2279 declaration = value
2280 for index, token, value in \ 2280 yield from self._process_declaration(declaration, tokens)
2281 self._process_declaration(declaration, tokens):
2282 yield index, token, value
2283 opening_paren = value == '(' and token == Punctuation 2281 opening_paren = value == '(' and token == Punctuation
2284 2282
2285 def _process_symbols(self, tokens): 2283 def _process_symbols(self, tokens):
2286 opening_paren = False 2284 opening_paren = False
2287 for index, token, value in tokens: 2285 for index, token, value in tokens:
2634 aliases = ['fennel', 'fnl'] 2632 aliases = ['fennel', 'fnl']
2635 filenames = ['*.fnl'] 2633 filenames = ['*.fnl']
2636 2634
2637 # these two lists are taken from fennel-mode.el: 2635 # these two lists are taken from fennel-mode.el:
2638 # https://gitlab.com/technomancy/fennel-mode 2636 # https://gitlab.com/technomancy/fennel-mode
2639 # this list is current as of Fennel version 0.1.0. 2637 # this list is current as of Fennel version 0.6.0.
2640 special_forms = ( 2638 special_forms = (
2641 u'require-macros', u'eval-compiler', 2639 'require-macros', 'eval-compiler', 'doc', 'lua', 'hashfn',
2642 u'do', u'values', u'if', u'when', u'each', u'for', u'fn', u'lambda', 2640 'macro', 'macros', 'import-macros', 'pick-args', 'pick-values',
2643 u'λ', u'set', u'global', u'var', u'local', u'let', u'tset', u'doto', 2641 'macroexpand', 'macrodebug', 'do', 'values', 'if', 'when',
2644 u'set-forcibly!', u'defn', u'partial', u'while', u'or', u'and', u'true', 2642 'each', 'for', 'fn', 'lambda', 'λ', 'partial', 'while',
2645 u'false', u'nil', u'.', u'+', u'..', u'^', u'-', u'*', u'%', u'/', u'>', 2643 'set', 'global', 'var', 'local', 'let', 'tset', 'set-forcibly!',
2646 u'<', u'>=', u'<=', u'=', u'~=', u'#', u'...', u':', u'->', u'->>', 2644 'doto', 'match', 'or', 'and', 'true', 'false', 'nil', 'not',
2645 'not=', '.', '+', '..', '^', '-', '*', '%', '/', '>',
2646 '<', '>=', '<=', '=', '...', ':', '->', '->>', '-?>',
2647 '-?>>', 'rshift', 'lshift', 'bor', 'band', 'bnot', 'bxor',
2648 'with-open', 'length'
2647 ) 2649 )
2648 2650
2649 # Might be nicer to use the list from _lua_builtins.py but it's unclear how? 2651 # Might be nicer to use the list from _lua_builtins.py but it's unclear how?
2650 builtins = ( 2652 builtins = (
2651 u'_G', u'_VERSION', u'arg', u'assert', u'bit32', u'collectgarbage', 2653 '_G', '_VERSION', 'arg', 'assert', 'bit32', 'collectgarbage',
2652 u'coroutine', u'debug', u'dofile', u'error', u'getfenv', 2654 'coroutine', 'debug', 'dofile', 'error', 'getfenv',
2653 u'getmetatable', u'io', u'ipairs', u'load', u'loadfile', u'loadstring', 2655 'getmetatable', 'io', 'ipairs', 'load', 'loadfile', 'loadstring',
2654 u'math', u'next', u'os', u'package', u'pairs', u'pcall', u'print', 2656 'math', 'next', 'os', 'package', 'pairs', 'pcall', 'print',
2655 u'rawequal', u'rawget', u'rawlen', u'rawset', u'require', u'select', 2657 'rawequal', 'rawget', 'rawlen', 'rawset', 'require', 'select',
2656 u'setfenv', u'setmetatable', u'string', u'table', u'tonumber', 2658 'setfenv', 'setmetatable', 'string', 'table', 'tonumber',
2657 u'tostring', u'type', u'unpack', u'xpcall' 2659 'tostring', 'type', 'unpack', 'xpcall'
2658 ) 2660 )
2659 2661
2660 # based on the scheme definition, but disallowing leading digits and commas 2662 # based on the scheme definition, but disallowing leading digits and
2661 valid_name = r'[a-zA-Z_!$%&*+/:<=>?@^~|-][\w!$%&*+/:<=>?@^~|\.-]*' 2663 # commas, and @ is not allowed.
2664 valid_name = r'[a-zA-Z_!$%&*+/:<=>?^~|-][\w!$%&*+/:<=>?^~|\.-]*'
2662 2665
2663 tokens = { 2666 tokens = {
2664 'root': [ 2667 'root': [
2665 # the only comment form is a semicolon; goes to the end of the line 2668 # the only comment form is a semicolon; goes to the end of the line
2666 (r';.*$', Comment.Single), 2669 (r';.*$', Comment.Single),
2667 2670
2668 (r'[,\s]+', Text), 2671 (r'[,\s]+', Text),
2669 (r'-?\d+\.\d+', Number.Float), 2672 (r'-?\d+\.\d+', Number.Float),
2670 (r'-?\d+', Number.Integer), 2673 (r'-?\d+', Number.Integer),
2671 2674
2672 (r'"(\\\\|\\"|[^"])*"', String), 2675 (r'"(\\\\|\\"|\\|[^"\\])*"', String),
2673 (r"'(\\\\|\\'|[^'])*'", String),
2674 2676
2675 # these are technically strings, but it's worth visually 2677 # these are technically strings, but it's worth visually
2676 # distinguishing them because their intent is different 2678 # distinguishing them because their intent is different
2677 # from regular strings. 2679 # from regular strings.
2678 (r':' + valid_name, String.Symbol), 2680 (r':' + valid_name, String.Symbol),
2688 2690
2689 # all your normal paired delimiters for your programming enjoyment 2691 # all your normal paired delimiters for your programming enjoyment
2690 (r'(\(|\))', Punctuation), 2692 (r'(\(|\))', Punctuation),
2691 (r'(\[|\])', Punctuation), 2693 (r'(\[|\])', Punctuation),
2692 (r'(\{|\})', Punctuation), 2694 (r'(\{|\})', Punctuation),
2695
2696 # the # symbol is shorthand for a lambda function
2697 (r'#', Punctuation),
2693 ] 2698 ]
2694 } 2699 }

eric ide

mercurial