use of org.elixir_lang.lexer.group.Base in project intellij-elixir by KronicDeth.
the class StackFrame method terminatorType.
public IElementType terminatorType() {
String promoter = getPromoter();
Base group = getGroup();
IElementType terminatorType;
if (Base.isHeredocPromoter(promoter)) {
terminatorType = group.heredocTerminatorType;
} else {
terminatorType = group.terminatorType;
}
return terminatorType;
}
use of org.elixir_lang.lexer.group.Base in project intellij-elixir by KronicDeth.
the class StackFrame method promoterType.
public IElementType promoterType() {
String promoter = getPromoter();
Base group = getGroup();
IElementType promoterType;
if (Base.isHeredocPromoter(promoter)) {
promoterType = group.heredocPromoterType;
} else {
promoterType = group.promoterType;
}
return promoterType;
}
Aggregations