Given the following code:
function testMenu1() as Menu2 {
var menu = new CheckboxMenu({ :title => "My CheckboxMenu" });
unsafeAddItem(menu, new MenuItem("hello", null, :hello, null));
return menu;
}
function testMenu2() as Menu2 {
var...