com.intellij.xdebugger.XDebugSession.getRunContentDescriptor()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(1.9k)|赞(0)|评价(0)|浏览(129)

本文整理了Java中com.intellij.xdebugger.XDebugSession.getRunContentDescriptor()方法的一些代码示例,展示了XDebugSession.getRunContentDescriptor()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XDebugSession.getRunContentDescriptor()方法的具体详情如下:
包路径:com.intellij.xdebugger.XDebugSession
类名称:XDebugSession
方法名:getRunContentDescriptor

XDebugSession.getRunContentDescriptor介绍

暂无

代码示例

代码示例来源:origin: go-lang-plugin-org/go-lang-idea-plugin

return process;
}).getRunContentDescriptor();

代码示例来源:origin: ballerina-platform/ballerina-lang

return new BallerinaDebugProcess(session, ballerinaDebugSession, getExecutionResults(state, env));
  }).getRunContentDescriptor();
} else if (state instanceof BallerinaTestRunningState) {
  FileDocumentManager.getInstance().saveAllDocuments();
      return new BallerinaDebugProcess(session, ballerinaDebugSession, getExecutionResults(state, env));
  }).getRunContentDescriptor();
} else if (state instanceof BallerinaRemoteRunningState) {
  FileDocumentManager.getInstance().saveAllDocuments();
      return new BallerinaDebugProcess(session, ballerinaDebugSession, null);
  }).getRunContentDescriptor();

代码示例来源:origin: Camelcade/Perl5-IDEA

@Override
 protected RunContentDescriptor doExecute(@NotNull final RunProfileState state, @NotNull final ExecutionEnvironment env)
  throws ExecutionException {
  FileDocumentManager.getInstance().saveAllDocuments();
  XDebugSession xDebugSession = XDebuggerManager.getInstance(env.getProject()).startSession(env, new XDebugProcessStarter() {
   @NotNull
   @Override
   public XDebugProcess start(@NotNull XDebugSession session) throws ExecutionException {
    return new PerlDebugProcess(session, (PerlDebugProfileStateBase)state,
                  state.execute(env.getExecutor(), PerlDebuggerProgramRunner.this));
   }
  });
  return xDebugSession.getRunContentDescriptor();
 }
}

代码示例来源:origin: intellij-dlanguage/intellij-dlanguage

return debugSession.getRunContentDescriptor();

代码示例来源:origin: GoogleCloudPlatform/google-cloud-intellij

return debugSession.getRunContentDescriptor();

相关文章