Automatic type substitution of `Object` for `object`
I used these commands (Mac version): ``` % ag -0 -l '@.+Object' | xargs -0 sed -ri '' -e '/@/s/(.*{.*)Object(.*})/\1object\2/' % ag -0 -l '@.+object\.' | xargs -0 sed -ri '' -e '/@/s/object\.</Record</' % ag -0 -l '@.+object<' | xargs -0 sed -ri '' -e '/@/s/object</Record</' ```
Showing
Please register or sign in to comment