Package flash.tools.debugger.concrete

Examples of flash.tools.debugger.concrete.DSuspendInfo


       {
         // since no parms test for valid location if none use players concept of where we stopped
         if( fileInfo.getFile(currentModule) == null)
         {
           //here we simply use the players concept of suspsend
           DSuspendInfo info = ((PlayerSession)session).getSuspendInfo();
           int at = info.getOffset();
           int which = info.getActionIndex();
           int until = info.getNextOffset();
           if (info.getReason() == SuspendReason.Unknown)
             throw new SuspendedException();
           SwfInfo swf = fileInfo.getSwfs()[which];
           outputAssembly(cli, (DSwfInfo)swf, at, until);
           throw new AmbiguousException(getLocalizationManager().getLocalizedTextString("key27")); //$NON-NLS-1$
View Full Code Here


       {
         // since no parms test for valid location if none use players concept of where we stopped
         if( fileInfo.getFile(currentModule, currentIsolate) == null)
         {
           //here we simply use the players concept of suspsend
           DSuspendInfo info = ((PlayerSession)session).getSuspendInfoIsolate(isolateId);
           int at = info.getOffset();
           int which = info.getActionIndex();
           int until = info.getNextOffset();
           if (info.getReason() == SuspendReason.Unknown)
             throw new SuspendedException();

           SwfInfo swf = fileInfo.getSwfs(isolateId)[which];
           outputAssembly(cli, (DSwfInfo)swf, at, until);
           throw new AmbiguousException(getLocalizationManager().getLocalizedTextString("key27")); //$NON-NLS-1$
View Full Code Here

       {
         // since no parms test for valid location if none use players concept of where we stopped
         if( fileInfo.getFile(currentModule) == null)
         {
           //here we simply use the players concept of suspsend
           DSuspendInfo info = ((PlayerSession)session).getSuspendInfo();
           int at = info.getOffset();
           int which = info.getActionIndex();
           int until = info.getNextOffset();
           if (info.getReason() == SuspendReason.Unknown)
             throw new SuspendedException();
           SwfInfo swf = fileInfo.getSwfs()[which];
           outputAssembly(cli, (DSwfInfo)swf, at, until);
           throw new AmbiguousException(getLocalizationManager().getLocalizedTextString("key27")); //$NON-NLS-1$
View Full Code Here

TOP

Related Classes of flash.tools.debugger.concrete.DSuspendInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.