(bool nullable, bool trackRef)
| 35 | internal static class RefModeExtensions |
| 36 | { |
| 37 | public static RefMode From(bool nullable, bool trackRef) |
| 38 | { |
| 39 | if (trackRef) |
| 40 | { |
| 41 | return RefMode.Tracking; |
| 42 | } |
| 43 | |
| 44 | return nullable ? RefMode.NullOnly : RefMode.None; |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | internal static class ForyHeaderFlag |
no outgoing calls
no test coverage detected