// This is a generated file. Not intended for manual editing. package org.elixir_lang.psi.impl; import com.ericsson.otp.erlang.OtpErlangObject; import com.ericsson.otp.erlang.OtpErlangTuple; import com.intellij.extapi.psi.ASTWrapperPsiElement; import com.intellij.lang.ASTNode; import com.intellij.psi.PsiElementVisitor; import com.intellij.psi.tree.IElementType; import com.intellij.psi.util.PsiTreeUtil; import org.elixir_lang.psi.*; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.util.List; public class ElixirStringHeredocImpl extends ASTWrapperPsiElement implements ElixirStringHeredoc { public ElixirStringHeredocImpl(ASTNode node) { super(node); } public void accept(@NotNull ElixirVisitor visitor) { visitor.visitStringHeredoc(this); } public void accept(@NotNull PsiElementVisitor visitor) { if (visitor instanceof ElixirVisitor) accept((ElixirVisitor)visitor); else super.accept(visitor); } @Override @Nullable public ElixirHeredocPrefix getHeredocPrefix() { return PsiTreeUtil.getChildOfType(this, ElixirHeredocPrefix.class); } @Override @NotNull public List<ElixirStringHeredocLine> getStringHeredocLineList() { return PsiTreeUtil.getChildrenOfTypeAsList(this, ElixirStringHeredocLine.class); } @NotNull public List<Integer> addEscapedCharacterCodePoints(List<Integer> codePointList, ASTNode node) { return ElixirPsiImplUtil.addEscapedCharacterCodePoints(this, codePointList, node); } @NotNull public List<Integer> addEscapedEOL(List<Integer> maybeCodePointList, ASTNode node) { return ElixirPsiImplUtil.addEscapedEOL(this, maybeCodePointList, node); } @NotNull public List<Integer> addFragmentCodePoints(List<Integer> codePointList, ASTNode node) { return ElixirPsiImplUtil.addFragmentCodePoints(this, codePointList, node); } @NotNull public List<Integer> addHexadecimalEscapeSequenceCodePoints(List<Integer> codePointList, ASTNode node) { return ElixirPsiImplUtil.addHexadecimalEscapeSequenceCodePoints(this, codePointList, node); } public IElementType getFragmentType() { return ElixirPsiImplUtil.getFragmentType(this); } public List<HeredocLine> getHeredocLineList() { return ElixirPsiImplUtil.getHeredocLineList(this); } @NotNull public OtpErlangObject quote() { return ElixirPsiImplUtil.quote(this); } @NotNull public OtpErlangObject quoteBinary(OtpErlangTuple binary) { return ElixirPsiImplUtil.quoteBinary(this, binary); } @NotNull public OtpErlangObject quoteEmpty() { return ElixirPsiImplUtil.quoteEmpty(this); } @NotNull public OtpErlangObject quoteLiteral(List<Integer> codePointList) { return ElixirPsiImplUtil.quoteLiteral(this, codePointList); } }