Skip to content

Commit

Permalink
Fuzzer: Implement a few more String TODOs (#6439)
Browse files Browse the repository at this point in the history
  • Loading branch information
kripken authored Mar 26, 2024
1 parent 1125750 commit c9a5da4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/tools/fuzzing/fuzzing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3977,9 +3977,11 @@ HeapType TranslateToFuzzReader::getSubType(HeapType type) {
case HeapType::string:
return HeapType::string;
case HeapType::stringview_wtf8:
return HeapType::stringview_wtf8;
case HeapType::stringview_wtf16:
return HeapType::stringview_wtf16;
case HeapType::stringview_iter:
WASM_UNREACHABLE("TODO: fuzz strings");
return HeapType::stringview_iter;
case HeapType::none:
case HeapType::noext:
case HeapType::nofunc:
Expand Down

0 comments on commit c9a5da4

Please sign in to comment.