// public function dispatchEvent(event:flash.events.Event):Boolean
// {
// return _bindingEventDispatcher.dispatchEvent(event);
// }
MethodInfo mi = new MethodInfo();
mi.setMethodName(NAME_DISPATCH_EVENT.getBaseName());
Vector<Name> paramTypes = new Vector<Name>(5);
paramTypes.add(NAME_EVENT);
mi.setParamTypes(paramTypes);
mi.setReturnType(NAME_BOOLEAN);
InstructionList insns = new InstructionList(8);
insns.addInstruction(OP_getlocal0);
insns.addInstruction(OP_getproperty, NAME_BINDING_EVENT_DISPATCHER);
insns.addInstruction(OP_getlocal1);