-
Notifications
You must be signed in to change notification settings - Fork 38
inline asm markup for C# #2331
Copy link
Copy link
Open
Labels
Description
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:
asm();
produces
<asm>asm();</asm>
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>
Reactions are currently unavailable