Examples of ErlangIncludeLibStub


Examples of org.intellij.erlang.stubs.ErlangIncludeLibStub

  @Override
  public ErlangIncludeLibStub createStub(@NotNull ErlangIncludeLib psi, StubElement parentStub) {
    ErlangIncludeString includeString = psi.getIncludeString();
    String text = includeString != null ? StringUtil.unquoteString(includeString.getText()) : "";
    return new ErlangIncludeLibStub(parentStub, this, text);
  }
View Full Code Here

Examples of org.intellij.erlang.stubs.ErlangIncludeLibStub

  }

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