Alexander Pantyukhin

Results 26 comments of Alexander Pantyukhin

Yes, great thing! I think the main goal which could be achieved there it to try compile FSharp.Compiler.Service to JVM. If this aim will be achieved then It would be...

I think that the subtask for this could be generation `node` structure from the EBNF.

@ale2317 For start I initiate Server and describe table with mapping as it said in documentation: ``` sql CREATE SERVER mssql_svr FOREIGN DATA WRAPPER tds_fdw OPTIONS (servername 'MY IP', port...

If I will have time soon I would like to do it. But also I don't mind if it will be implemented by someone else :)

About circular references. It's not hard to check if objects with circular references was passed to serializer. Just enough to have some `HashSet` called `serializingObjects` which will contain references on...

I believe that having a separated dependency which provides import (and export in future) into Excel would be good. If consumer of the Deedle would like to work with Excel,...

Currently It is on hold

maybe this is out of scope of the current question, but I have the suggestion about getting base python ` typeshed`. What if parse Python `pyi` into some json with...

Correct me if wrong,pyi files contains sometimes conditions, evaluations. How much deep `asp.parse` should `sniff`? There are many modules functions like `html.escape`. But it also contains classes with `if`'s depends...

I have played a little bit with parsing definitions of function. Tests with demo: https://github.com/alexpantyukhin/PythonParser/blob/master/PythonParser.Test/ParserTests.fs Source: https://github.com/alexpantyukhin/PythonParser/blob/master/PythonParser/Parser.fs It looks ugly for now (i'm newbie in F# yet). But It could...