FSharp.Quotations.Compiler
FSharp.Quotations.Compiler copied to clipboard
This library is a compiler for F# expression tree.
:wave: GitHub disabled TLS 1.0 and TLS 1.1 on February 22nd, which affected Paket's bootstrapper. It needs to be updated to 5.142 or later. You can read more about this...
``` [] let rec f () = let rec g x = g x // これに未対応なのは制約事項 f () // これができない(無限ループになる)のはバグ ``` > 解決方法としては、解析済みの関数群を持っておいて、関数呼び出しの先を解析する前にすでにその関数が解析済みかどうかのチェックを入れればいいだけなのでそんなに難しくはないはず だそうです。(by @bleis-tift )
:smiley: