Examples of ErlangCallbackSpecStub


Examples of org.intellij.erlang.stubs.ErlangCallbackSpecStub

  @Override
  public ErlangCallbackSpecStub createStub(@NotNull ErlangCallbackSpec psi, StubElement parentStub) {
    String name = ErlangPsiImplUtil.getCallbackSpecName(psi);
    int arity = ErlangPsiImplUtil.getCallBackSpecArguments(psi).size();
    return new ErlangCallbackSpecStub(parentStub, this, name, arity);
  }
View Full Code Here

Examples of org.intellij.erlang.stubs.ErlangCallbackSpecStub

  }

  @NotNull
  @Override
  public ErlangCallbackSpecStub deserialize(@NotNull StubInputStream dataStream, StubElement parentStub) throws IOException {
    return new ErlangCallbackSpecStub(parentStub, this, dataStream.readName(), dataStream.readInt());
  }
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.