Examples of DBGpStackFrame


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

      return null;
    }

    IAdaptable adaptable = DebugUITools.getDebugContext();
    if (adaptable instanceof DBGpStackFrame) {
      DBGpStackFrame context = (DBGpStackFrame) adaptable;

      int offset = hoverRegion.getOffset();
      IStructuredDocumentRegion flatNode = ((IStructuredDocument) textViewer
          .getDocument()).getRegionAtCharacterOffset(offset);
      ITextRegion region = null;
View Full Code Here

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

    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

        StringBuffer buffer = new StringBuffer();
        String frameName = frame.getName();
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.