Be conservative about final methods until we fully test the algorithm.

This commit is contained in:
Michael Bebenita 2015-01-20 11:50:54 -08:00
Родитель 19d2e2bc26
Коммит 2bb3f92de3
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -98,6 +98,7 @@ module J2ME {
}
export function isFinalMethod(methodInfo: MethodInfo): boolean {
return false;
var result = methodInfo.isFinal;
if (!result) {
var classInfo = methodInfo.classInfo;