Skip to content
This repository has been archived by the owner on Sep 23, 2023. It is now read-only.

Support for breaking before nested statements #6

Open
lexandera opened this issue Nov 1, 2011 · 0 comments
Open

Support for breaking before nested statements #6

lexandera opened this issue Nov 1, 2011 · 0 comments

Comments

@lexandera
Copy link
Owner

Currently a debug statement is inserted only in front of the first of the nested statements, like this:

debugCode();
foo(bar(quux()));

It should be possible to use comma-separated groups of statements in the form of (funA(), funB()) for inserting debugging calls into nested code.

After this change, the generated code would look something like this instead:

(debugCode(), foo((debugCode(), bar((debugCode(), quux())))))
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant