(annotations whisk.KeyValueArr)
| 814 | } |
| 815 | |
| 816 | func addRawAnnotations(annotations whisk.KeyValueArr) whisk.KeyValueArr { |
| 817 | annotations = deleteWebAnnotationKeys(annotations) |
| 818 | annotations = addKeyValue(WEB_EXPORT_ANNOT, true, annotations) |
| 819 | annotations = addKeyValue(RAW_HTTP_ANNOT, true, annotations) |
| 820 | annotations = addKeyValue(FINAL_ANNOT, true, annotations) |
| 821 | |
| 822 | return annotations |
| 823 | } |
| 824 | |
| 825 | func deleteWebAnnotationKeys(annotations whisk.KeyValueArr) whisk.KeyValueArr { |
| 826 | annotations = deleteKey(WEB_EXPORT_ANNOT, annotations) |
nothing calls this directly
no test coverage detected