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

Support for breaking before nested statements #6

@lexandera

Description

@lexandera

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())))))

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions