Examples of ErlangFunctionStub


Examples of org.intellij.erlang.stubs.ErlangFunctionStub

    return new ErlangFunctionImpl(stub, this);
  }

  @Override
  public ErlangFunctionStub createStub(@NotNull ErlangFunction psi, StubElement parentStub) {
    return new ErlangFunctionStub(parentStub, this, psi.getName(), psi.getArity(), psi.isExported());
  }
View Full Code Here

Examples of org.intellij.erlang.stubs.ErlangFunctionStub

  }

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