Method
BuildRawModule
(StringBuilder builder, Dictionary<string, string> delegates, string indent)
Source from the content-addressed store, hash-verified
| 65 | /////////////////////////////////////////// |
| 66 | |
| 67 | public void BuildRawModule(StringBuilder builder, Dictionary<string, string> delegates, string indent) |
| 68 | { |
| 69 | builder.Append($"\r\n{indent}///////////////////////////////////////////\r\n\r\n"); |
| 70 | for (int i = 0; i < functions.Count; i++) |
| 71 | { |
| 72 | builder.Append(indent); |
| 73 | BuildRawFunction(builder, delegates, functions[i]); |
| 74 | } |
| 75 | } |
| 76 | } |
Tested by
no test coverage detected