Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

inconsistent_returns.txt 2.1KB

12345678910111213
  1. inconsistent-return-statements:150:explicit_implicit_returns:Either all return statements in a function should return an expression, or none of them should.
  2. inconsistent-return-statements:154:empty_explicit_returns:Either all return statements in a function should return an expression, or none of them should.
  3. inconsistent-return-statements:159:explicit_implicit_returns2:Either all return statements in a function should return an expression, or none of them should.
  4. inconsistent-return-statements:167:explicit_implicit_returns3:Either all return statements in a function should return an expression, or none of them should.
  5. inconsistent-return-statements:175:returns_missing_in_catched_exceptions:Either all return statements in a function should return an expression, or none of them should.
  6. inconsistent-return-statements:185:complex_func:Either all return statements in a function should return an expression, or none of them should.
  7. inconsistent-return-statements:193:inconsistent_returns_in_nested_function.not_consistent_returns_inner:Either all return statements in a function should return an expression, or none of them should.
  8. inconsistent-return-statements:214:bug_1772_counter_example:Either all return statements in a function should return an expression, or none of them should.
  9. inconsistent-return-statements:222:bug_1771_counter_example:Either all return statements in a function should return an expression, or none of them should.
  10. inconsistent-return-statements:228:bug_1794_inner_func_in_if_counter_example_1:Either all return statements in a function should return an expression, or none of them should.
  11. inconsistent-return-statements:237:bug_1794_inner_func_in_if_counter_example_2:Either all return statements in a function should return an expression, or none of them should.
  12. inconsistent-return-statements:246:bug_1794_inner_func_in_if_counter_example_3:Either all return statements in a function should return an expression, or none of them should.
  13. inconsistent-return-statements:253:bug_1794_inner_func_in_if_counter_example_3._inner2:Either all return statements in a function should return an expression, or none of them should.