We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 949b53d commit 5a569d9Copy full SHA for 5a569d9
src/serialize.rs
@@ -237,7 +237,6 @@ pub mod tests {
237
// 3) create expressions
238
let a_expr = add.e(Expr::Sym(a));
239
add.add_expr_loc(a_expr, 152, 153, add_fileid);
240
- handler.emit_diagnostic_expr(&add, &a_expr, "test", Level::Error);
241
let b_expr = add.e(Expr::Sym(b));
242
add.add_expr_loc(b_expr, 208, 209, add_fileid);
243
let dut_s_expr = add.e(Expr::Sym(dut_s));
@@ -332,7 +331,7 @@ pub mod tests {
332
331
let dut_done_expr = calyx_go_done.e(Expr::Sym(dut_done));
333
calyx_go_done.add_expr_loc(dut_done_expr, 184, 192, calyx_fileid);
334
let cond_expr = calyx_go_done.e(Expr::Binary(BinOp::Equal, dut_done_expr, one_expr));
335
- calyx_go_done.add_expr_loc(cond_expr, 183, 198, calyx_fileid);
+ calyx_go_done.add_expr_loc(cond_expr, 172, 187, calyx_fileid);
336
let not_expr = calyx_go_done.e(Expr::Unary(UnaryOp::Not, cond_expr));
337
calyx_go_done.add_expr_loc(not_expr, 182, 198, calyx_fileid);
338
0 commit comments