X-Git-Url: http://nitlanguage.org diff --git a/src/frontend/div_by_zero.nit b/src/frontend/div_by_zero.nit index 6001f01..16802c0 100644 --- a/src/frontend/div_by_zero.nit +++ b/src/frontend/div_by_zero.nit @@ -66,9 +66,9 @@ private class DivByZeroVisitor # 1. We need a `/` operation if not node isa ASlashExpr then return - # 2. The second operand must be a integer literal + # 2. The second operand must be an integer literal var op2 = node.n_expr2 - if not op2 isa AIntExpr then return + if not op2 isa AIntegerExpr then return # 3. Its value must be 0 # Note: because of `literal_phase` the `value` method exists @@ -80,6 +80,6 @@ private class DivByZeroVisitor if not op1.mtype.is_subtype(mmodule, null, int_type) then return # Error detected - toolcontext.error(node.location, "Error: Definitely division by zero") + toolcontext.warning(node.location, "div-by-zero", "Warning: division by zero.") end end