Base tests and examples

This commit is contained in:
Mark Skelton
2023-01-06 22:31:45 -06:00
parent 46bcc3eac6
commit 534df2a655
12 changed files with 4570 additions and 2 deletions
+32
View File
@@ -0,0 +1,32 @@
================================
declaration specs
================================
struct __declspec(dllexport) s2
{
};
union __declspec(noinline) u2 {
};
class __declspec(uuid) u2 {
};
---
(translation_unit
(struct_specifier
(ms_declspec_modifier
(identifier))
name: (type_identifier)
body: (field_declaration_list))
(union_specifier
(ms_declspec_modifier
(identifier))
name: (type_identifier)
body: (field_declaration_list))
(class_specifier
(ms_declspec_modifier
(identifier))
name: (type_identifier)
body: (field_declaration_list)))