Coding Seb

Results 31 comments of Coding Seb

I added a small documentation about [using lambda for method simulation here](https://github.com/codingseb/ExpressionEvaluator/wiki/Variables-and-Functions#simulate-function-and-methods-declaration-with-lambda-and-multiline-lambda) I always keep this issue open

Hello @Toxic-Cookie. There is nothing in ExpressionEvaluator to return a compiled predicate or a other delegate. As everything is evaluate on the fly and do not compile. If you are...

if you have A PR you can submit it. But for this issue, I think we need a way to keep compatibility with Exceptions. Could be an option and/or override...

@TheoVC Thanks for your your investigation and your tests. Yes I think syntaxic tree or compilation are a big speed enhencement for multiple execution. Speed is a big drawdown of...

I investigated a bit in the wonderful world of `System.Linq.Expressions`. What I see for now and reflect on * The gains in performance are enormous. * Some recurring EE Pitfalls...

> > > Hello, if that's of any help, what do you think about this library ? https://github.com/davideicardi/DynamicExpresso > It looks like a good starting point. Yes it's a really...

I am just a bit stuck on how to adapt the variables and on the fly events (that were for me the big cool stuff of EE with syntax customization)...

> > > For investigation purposes... I have done a recursive descent parser based on the Richard Weeks series. > https://www.youtube.com/watch?v=_hYV5N_NAgk&list=PLHLYG7mk_iQloafxJ55Uqxc2n7m4NnNO7&index=12 Also very interesting stuff here thank for sharing this...

I will do it with #73 and it will be part of the next "Script customization" version of EE

Apparently this is due to the fact that : To use `Tr` in xaml without namespace we need to export a namespace in the standard xaml namespace. This is done...