xakepp35

Results 13 comments of xakepp35

I was in urgent need for `any` parsing from js side, so only workaround for me was - to edit generated files manually - I've replaced `: Any` to `:...

- there were leftovers, compileCallInternal still used old interface, so it crashed under certain circumstances - you hurried with it, maybe it was smarter to keep old interface working as...

can we please do 2 changes? 1. add a funcction ``` func (c *Code) RunWithContextUnnormalized(ctx context.Context, v any, values ...any) Iter { switch { case len(values) > len(c.variables): return NewIter(&tooManyVariableValuesError{})...

Its not nesesary "delaying".. in some scenarios its opposite - normalisation can be done in advance (caching is done on user side). In our scenario, for example, we have smart...

sorry for such many info here, its actually worth multiple issues at once, all of them are arising when you re trying to make it perform fast, processing thousands and...

Sorry for such late response. Looks like that fix is working good. We switched to use of `json-number` branch month ago. No issues were found with it after 1 month...

@itchyny Would `json-number` be merged into master? looks like it resolved our issue. We're using it in prod for 2 months, no problems were observed yet. Moreover, it allowed us...

We also need such functionality, because it turns out there is no way to pass different parameters after code was compiled. Variables and functions can only be set at compile...