Package org.eclipse.php.internal.debug.core.xdebug.dbgp.model

Examples of org.eclipse.php.internal.debug.core.xdebug.dbgp.model.DBGpThread


  protected String getStackFrameText(IStackFrame frame) {
    if (frame instanceof DBGpStackFrame) {
      try {
        // Fix bug #160443 (Stack frames line numbers update).
        // Synchronize the top frame with the given values.
        DBGpThread thread = (DBGpThread) frame.getThread();
        DBGpStackFrame topFrame = (DBGpStackFrame) thread
            .getTopStackFrame();
        if (topFrame != null && topFrame.equals(frame)) {
          frame = topFrame;
        } // end fix
View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.debug.core.xdebug.dbgp.model.DBGpThread

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.