Message from JavaScript discussions
July 2017
— AOP basically isolates cross cutting concerns into point cuts, the enter
and exit
and wherever else I need one
Then all you have to change is those functions when you want to make one algo rely on the other, and some other interesting things
— I might put up a little micro AOP framework just so it's on my portfolio :D
— This is something that could be done with code annotations that they are trying to push through, right?
— Code annotations?
— I think some langs provide some AOP constructs, if you mean that
— LoginRequired - this kind of things
— JS has the continuation monad and cw/cs functions which are useful in AOP
— Yes you can compose auth with AOP
— The continuation monad just provides an efficient way to link things up since they provide the control flow and state-passing automatically
— Oh, sorry in JS land it is called decorators
— Ah