Set a string directly as blob in file blobs map.
| 132 | |
| 133 | // Set a string directly as blob in file blobs map. |
| 134 | void setSource(const string& name, const string& code) |
| 135 | { |
| 136 | _fileBlobs[name] = make_unique<StringSlangBlob>(code); |
| 137 | } |
| 138 | |
| 139 | // Map of string blobs. |
| 140 | map<string, unique_ptr<StringSlangBlob>> _fileBlobs; |
nothing calls this directly
no outgoing calls
no test coverage detected