Open washort opened 7 years ago
monte lint reports false positives for names that are defined in a scope but have uses before the definition.
monte lint
This source:
x def x := 0 x
produces this report:
bad.mt:3.1-4.2: Undefined name x bad.mt:1.1-2.2: Undefined name x
Only the second line is correct. Proper name usage analysis will need to take ordering into consideration.
monte lint
reports false positives for names that are defined in a scope but have uses before the definition.This source:
produces this report:
Only the second line is correct. Proper name usage analysis will need to take ordering into consideration.