Project

General

Profile

« Previous | Next » 

Revision 9a57b047

Added by ko1 (Koichi Sasada) over 1 year ago

super{} doesn't use block

super(){}, super{} and super(&b) doesn't use the given
block so warn unused block warning when calling a method which
doesn't use block with above super expressions.

e.g.: def f = super{B1} (warn on f{B2} because B2 is not used.