This commit is contained in:
igor%mir2.org 2004-05-07 15:00:17 +00:00
Родитель 8dd44befd4
Коммит 605d32ffea
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -830,6 +830,11 @@ public class ClassFileWriter {
}
}
public void addPush(boolean k)
{
add(k ? ByteCode.ICONST_1 : ByteCode.ICONST_0);
}
/**
* Generate code to load the given long on stack.
*