Examples of ErlangIncludeStub


Examples of org.intellij.erlang.stubs.ErlangIncludeStub

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

Examples of org.intellij.erlang.stubs.ErlangIncludeStub

  }

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