| 460 | }; |
| 461 | |
| 462 | TypeDeclPtr makeSimFunctionFlags() { |
| 463 | auto ft = new TypeDecl(Type::tBitfield); |
| 464 | ft->alias = "SimFunctionFlags"; |
| 465 | ft->argNames = { "aot", "fastcall", "builtin", "jit", "unsafe", "cmres", "pinvoke" }; |
| 466 | return ft; |
| 467 | } |
| 468 | |
| 469 | struct SimFunctionAnnotation : ManagedStructureAnnotation<SimFunction,false> { |
| 470 | SimFunctionAnnotation(ModuleLibrary & ml) : ManagedStructureAnnotation ("SimFunction", ml) { |
no outgoing calls
no test coverage detected