Commits

Michael Ilseman committed 41dec5b58c1
Invoke TryAddFinal after type checking. Run whole-module checks at the end of perform Sema, specifically TryAddFinal. After everything has been type checked, accessibility has been provided, and we have had a chance to see any potential overrides, we try to add the final attribute to class members. This ends up de-virtualizing many functions, or rather they avoid the vtable altogether. Thus, there are many test file changes. New test file add_final.swift. Other tests updated to either reflect the non-virtual call, or to have public added to them. Swift SVN r20338