Examples of ErlangFunctionCallExpression


Examples of org.intellij.erlang.psi.ErlangFunctionCallExpression

  }

  private String fetchSpec(@NotNull String moduleName, @NotNull String functionName, int arity) {
    String paramList = paramList(arity);
    String functionCallText = moduleName + ":" + functionName + "(" + paramList + ")";
    ErlangFunctionCallExpression erlFunctionCall = ((ErlangGlobalFunctionCallExpression) ErlangElementFactory.createExpressionFromText(
      getProject(), functionCallText)).getFunctionCallExpression();
    String httpDoc = myDocProvider.generateDoc(erlFunctionCall, null);
    if (httpDoc != null) {
      Matcher matcher = PATTERN_FUNC_DECLARATION.matcher(httpDoc);
      if (matcher.find()) {
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.