@@ -288,22 +288,23 @@ exprt::operandst java_string_library_preprocesst::process_parameters(
288
288
}
289
289
290
290
// / Creates a string_exprt from the input exprt representing a char sequence
291
- // / \param op_to_process: an operand of a type which implements char sequence
291
+ // / \param expr_to_process: an expression of a type which implements char
292
+ // / sequence
292
293
// / \param loc: location in the source
293
294
// / \param symbol_table: symbol table
294
295
// / \param init_code: code block, in which declaration of some arguments may be
295
296
// / added
296
297
// / \return the processed operand
297
298
exprt java_string_library_preprocesst::convert_exprt_to_string_exprt (
298
- const exprt &op_to_process ,
299
+ const exprt &expr_to_process ,
299
300
const source_locationt &loc,
300
301
symbol_tablet &symbol_table,
301
302
code_blockt &init_code)
302
303
{
303
- PRECONDITION (implements_java_char_sequence (op_to_process .type ()));
304
+ PRECONDITION (implements_java_char_sequence (expr_to_process .type ()));
304
305
string_exprt string_expr=fresh_string_expr (loc, symbol_table, init_code);
305
306
code_assign_java_string_to_string_expr (
306
- string_expr, op_to_process , symbol_table, init_code);
307
+ string_expr, expr_to_process , symbol_table, init_code);
307
308
exprt string_expr_sym=fresh_string_expr_symbol (loc, symbol_table, init_code);
308
309
init_code.add (code_assignt (string_expr_sym, string_expr));
309
310
return string_expr;
0 commit comments