File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -1239,7 +1239,8 @@ Vector<CompareTypeAndValuePair> OpCode_Compare::flat_compares() const
12391239 } else if (compare_type == CharacterCompareType::GeneralCategory
12401240 || compare_type == CharacterCompareType::Property
12411241 || compare_type == CharacterCompareType::Script
1242- || compare_type == CharacterCompareType::ScriptExtension) {
1242+ || compare_type == CharacterCompareType::ScriptExtension
1243+ || compare_type == CharacterCompareType::StringSet) {
12431244 auto value = m_bytecode->at (offset++);
12441245 result.append ({ compare_type, value });
12451246 } else {
@@ -1366,8 +1367,8 @@ Vector<ByteString> OpCode_Compare::variable_arguments_to_byte_string(Optional<Ma
13661367 } else if (compare_type == CharacterCompareType::GeneralCategory
13671368 || compare_type == CharacterCompareType::Property
13681369 || compare_type == CharacterCompareType::Script
1369- || compare_type == CharacterCompareType::ScriptExtension) {
1370-
1370+ || compare_type == CharacterCompareType::ScriptExtension
1371+ || compare_type == CharacterCompareType::StringSet) {
13711372 auto value = m_bytecode->at (offset++);
13721373 result.empend (ByteString::formatted (" value={}" , value));
13731374 }
You can’t perform that action at this time.
0 commit comments