Lorenzo Dematté
Lorenzo Dematté
@AndyAyersMS is there anything already implemented on escape analysis, in the JIT or somewhere else? I'd like to learn more about it. Can you point me at code/docs/discussions?
I was just coming here to make the same request :) so well done @empz! I like the proposed API very much. I am actually using something very similar ATM....
It is extremely simple, and covers only my use cases. I am also new to Flux, that's why I built it only to suit my cases - I don't know...
What I am doing right now (well, tomorrow, or next time I touch this code) it is write a robust enough TimeSpan to [duration](https://docs.influxdata.com/influxdb/v2.0/reference/flux/language/lexical-elements/#duration-literals) converter, for AggregateWindow and Range. That's...
@bednar I agree 100%, that's why I did not want to integrate/propose my simple builder, which was implemented with a "works with my code" attitude :) Since there are already...
Building an AST from a builder should be quite easy, as you can just create the nodes of the tree directly from the builder calls - no need for external...
The interesting bit is, IMO, the AST visitor part, because since there is already the LINQ implementation (from Linq.Expression nodes), it is were there should be an opportunity to refactor...
> I've already done it: > [Influxdb2.Client](https://github.com/xljiulang/Influxdb2.Client) Hi! Do you plan to port it to this repository and submit a pull request? Otherwise I would say this issue should stay...
To save you a little time, fell free to recycle the work I did when I was looking at feasibility. There is already a mock C# syntax (which is really...
https://github.com/dotnet/roslyn/issues/357#issuecomment-163286864 https://gist.github.com/ldematte/39b9f3119a92dc058799 Are the relevant parts