This commit is contained in:
Michael Bebenita 2015-01-30 23:31:03 -08:00
Родитель 56f4ec662c
Коммит 6fcbbe316b
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -87,6 +87,9 @@ module J2ME {
}
export function isFinalMethod(methodInfo: MethodInfo): boolean {
if (isFinalClass(methodInfo.classInfo)) {
return true;
}
// XXX Determine whether we can start using the code in this function.
return false;
var result = methodInfo.isFinal;