Package com.jetbrains.python.psi

Examples of com.jetbrains.python.psi.PyFile


        if (selectionText != null) {
          sendCommand = sendCommand.withSelectionText(selectionText);
        }
        else {
          PyFile file = getPythonFile(e);
          if (file != null) {
            sendCommand = sendCommand.withFile(file.getVirtualFile());
          }
          else {
            throw new IllegalStateException();
          }
        }
View Full Code Here


    }
  }

  @Nullable
  private static String getFileText(AnActionEvent e) {
    PyFile file = getPythonFile(e);
    if (file != null) {
      return file.getText();
    }

    return null;
  }
View Full Code Here

TOP

Related Classes of com.jetbrains.python.psi.PyFile

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.