Examples of ClKeywordStubImpl


Examples of org.jetbrains.plugins.clojure.psi.stubs.impl.ClKeywordStubImpl

    dataStream.writeName(stub.getName());
  }

  public ClKeywordStub deserialize(StubInputStream dataStream, StubElement parentStub) throws IOException {
    StringRef ref = dataStream.readName();
    return new ClKeywordStubImpl(parentStub, ref, this);
  }
View Full Code Here

Examples of org.jetbrains.plugins.clojure.psi.stubs.impl.ClKeywordStubImpl

  public ClKeyword createPsi(ClKeywordStub stub) {
    return new ClKeywordImpl(stub, ClojureElementTypes.KEYWORD);
  }

  public ClKeywordStub createStub(ClKeyword psi, StubElement parentStub) {
    return new ClKeywordStubImpl(parentStub, StringRef.fromString(psi.getName()), ClojureElementTypes.KEYWORD);
  }
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.