Ran into some markup around inline asm, and it looks like we're marking it up for C#, which I don't think is valid.
There is no asm keyword in C#, there are some parser tests that are created for it but they're just generated because it's caught in LANGUAGE_C_FAMILY
Current state:
produces
I believe, at least for this specific case, that the following is what we'd actually expect
<expr_stmt><expr><call><name>asm</name><argument_list>()</argument_list></call></expr>;</expr_stmt>
Ran into some markup around inline asm, and it looks like we're marking it up for C#, which I don't think is valid.
There is no
asmkeyword in C#, there are some parser tests that are created for it but they're just generated because it's caught inLANGUAGE_C_FAMILYCurrent state:
produces
I believe, at least for this specific case, that the following is what we'd actually expect