Skip to content

Commit befb6e2

Browse files
Fix a mistake in java_identifier_start
The wrong function was previously called: part instead of start. This is related to diffblue/test-gen#118
1 parent f791fef commit befb6e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/java_bytecode/character_refine_preprocess.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1059,7 +1059,7 @@ codet character_refine_preprocesst::convert_is_java_identifier_start_char(
10591059
conversion_inputt &target)
10601060
{
10611061
return convert_char_function(
1062-
&character_refine_preprocesst::expr_of_is_unicode_identifier_part, target);
1062+
&character_refine_preprocesst::expr_of_is_unicode_identifier_start, target);
10631063
}
10641064

10651065
/*******************************************************************\

0 commit comments

Comments
 (0)