6
votes
1answer
310 views

AOP in Objective-C: Inject context-aware code into each method while maintaining DRY

UPDATE: With some key suggestions and back and forth with George, I've come up with two different ways to achieve exactly what I want in CodeRunner and posted it on Github's gist site: Objective-C ...
2
votes
4answers
453 views

How can you be DRY with a programming language that doesn't have Reflection? [closed]

Any programming language that does not have a suitable reflection mechanism I find seriously debilitating for rapidly changing problems. It seems with certain languages its incredible hard or not ...
2
votes
6answers
510 views

Is there a tool that enables me to insert one line of code into all functions and methods in a C++-source file?

It should turn this int Yada (int yada) { return yada; } into this int Yada (int yada) { SOME_HEIDEGGER_QUOTE; return yada; } but for all (or at least a big bunch of) syntactically ...