6 Expanding the User’s Program Text and Breaking🔗ℹ

Macro-expanding a program may involve arbitrary computation and requires the setup of the correct language. To aid this, DrRacket’s tool interface provides drracket:eval:expand-program to help. Use this method to extract the fully expanded program text in a particular language.

Because expanding the user’s program may require DrRacket to evaluate arbitrary code that the user wrote, tools that expand the user’s program should also allow the user to break the expansion. To help with this, the tools interfaces provides these methods: enable-evaluation and disable-evaluation. Since your tool will be expanding the program text, you should be both overriding enable-evaluation and disable-evaluation to disable your tool and calling them to ensure that only one expansion is happening at a time.

Finally, DrRacket provides the set-breakables method. This method controls what behavior the Break button has.