| 29 | class AssetCatalog; |
| 30 | |
| 31 | struct JavaScriptFile { |
| 32 | BytesView content; |
| 33 | StringBox sourceMap; |
| 34 | |
| 35 | JavaScriptFile(); |
| 36 | JavaScriptFile(const BytesView& content, const StringBox& sourceMap); |
| 37 | ~JavaScriptFile(); |
| 38 | }; |
| 39 | |
| 40 | class ModuleLoadStrategy : public SimpleRefCountable { |
| 41 | public: |
no outgoing calls
no test coverage detected