Replies: 2 comments 2 replies
-
Interesting, are you trying to create your own compiler of F#? You posted this under ‘F# Suggestions’, did you mean to make a language suggestion, or are you asking for a code review? Note that you can get the TAST from F#, which you could use for correctness checking of your own compiler. |
Beta Was this translation helpful? Give feedback.
-
I, once again, suggest having such discussions over at https://github.com/dotnet/fsharp/discussions/categories/q-a, since it usually have more people paying attention to it. |
Beta Was this translation helpful? Give feedback.
-
Although the F # source file is a large grammar file, the grammar of F# is relatively independent. References include:
First, I extracted the grammar of TypeArgument, which is
typ
in pars.fsyBNF file: typeArgument.fsyacc
test data:TypeArgumentCompilerTest.fs
I shared the decomposed grammar file, Welcome to discuss and study together.
Beta Was this translation helpful? Give feedback.
All reactions