Examples of DBGpThread


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
Copyright © 2018 www.massapi.com. 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.