use of org.jetbrains.kotlin.psi.stubs.impl.KotlinTypeParameterStubImpl in project kotlin by JetBrains.
the class KtTypeParameterElementType method deserialize.
@NotNull
@Override
public KotlinTypeParameterStub deserialize(@NotNull StubInputStream dataStream, StubElement parentStub) throws IOException {
StringRef name = dataStream.readName();
boolean isInVariance = dataStream.readBoolean();
boolean isOutVariance = dataStream.readBoolean();
return new KotlinTypeParameterStubImpl(parentStub, name, isInVariance, isOutVariance);
}
Aggregations