I would like to be able to edit programs like:
(identifier) {
if @ == "bad" {
@ = "good"
}
}
which would replace any identifiers called "bad" with the string "good". The edits would not be node based, but byte replacement. It would be good to support in place editing with a flag like -i as well.
I would like to be able to edit programs like:
which would replace any identifiers called "bad" with the string "good". The edits would not be node based, but byte replacement. It would be good to support in place editing with a flag like
-ias well.