Package org.eclipse.php.internal.debug.core.launching

Examples of org.eclipse.php.internal.debug.core.launching.PHPProcess


    boolean runWithDebug = launchConfiguration.getAttribute(
        IPHPDebugConstants.RUN_WITH_DEBUG_INFO, true);
    if (launch.getLaunchMode().equals(ILaunchManager.DEBUG_MODE)) {
      runWithDebug = false;
    }
    PHPProcess process = new PHPProcess(launch, URL);
    debugTarget = (PHPDebugTarget) createDebugTraget(this, launch, URL,
        requestPort, process, runWithDebug, stopAtFirstLine, project);
    launch.addDebugTarget(debugTarget);
    // A fix for Linux display problem.
    // This code will auto-expand the debugger view tree.
View Full Code Here


        .getStopAtFirstLine(project);
    int requestPort = PHPDebugPlugin
        .getDebugPort(DebuggerCommunicationDaemon.ZEND_DEBUGGER_ID);

    IPath phpExe = new Path(phpExeString);
    PHPProcess process = new PHPProcess(launch, phpExe.toOSString());

    debugTarget = (PHPDebugTarget) createDebugTarget(this, launch,
        phpExeString, debugFileName, requestPort, process,
        runWithDebugInfo, stopAtFirstLine, project);
    launch.addDebugTarget(debugTarget);
View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.debug.core.launching.PHPProcess

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.