Is there a way to view a function's source code from within the Racket REPL?

前端 未结 3 1611
梦谈多话
梦谈多话 2020-12-19 07:38

I\'m currently trying to dive into Racket/Scheme a bit. I have an instance of the (X)REPL running next to my editor, which helps me immensely to explore the language. Howeve

相关标签:
3条回答
  • 2020-12-19 08:24

    I'm not sure if this applies to Racket, but in MIT scheme there are a couple built-in procedures that will get you close. (Below, proc just stands for any procedure)

    1. (procedure-arity proc) as you mentioned will give you the number of arguments
    2. (pa proc) will print the argument list
    3. (pp proc) will print the body of the procedure

    This will work for many of the built in procedures as well any that you define yourself, but if you try to call any of these on a special form like define or set! you will get an error.

    0 讨论(0)
  • 2020-12-19 08:30

    Eli Barzilay notes that the Geiser project includes code to extract this documentation.


    I do have an experimental bit of source code that extracts the text out of the HTML documentation, though that code may have bitrotted.

    See: https://github.com/dyoo/wescheme-docs/blob/master/test-extract-docstring.rkt

    and its dependencies, which live in: https://github.com/dyoo/wescheme-docs.

    The extract-docstring.rkt library I wrote up works under Racket 5.2.1, but I'm admittedly doing some really icky, hacky things to extract text from the documentation.

    It may be worthwhile to tell the folks on the Racket Users mailing list that being able to access the text-based documentation from xrepl is an important thing; perhaps it'll get the impetus moving.

    0 讨论(0)
  • 2020-12-19 08:32

    A couple weeks ago the XREPL ,describe command was enhanced to print the function argument names and contract; source.

    This is the "blue box" from Racket documentation -- so called because they used to be blue before the Racket 6 CSS redesign; now they're actually grey :).

    You can get this by building Racket from HEAD. Otherwise, it should be in the next release after 6.1.

    Keep in mind that this appears to be limited to functions that have Scribble documentation in installed packages.

    0 讨论(0)
提交回复
热议问题