blob: e8e34d6e0d350f196ee0cff47ca4c84cd3d9efdd [file] [log] [blame]
package com.intellij.tasks.jira.jql.psi;
import org.jetbrains.annotations.NotNull;
/**
* @author Mikhail Golubev
*/
public interface JqlFunctionCall extends JqlOperand {
@NotNull
JqlIdentifier getFunctionName();
@NotNull
JqlArgumentList getArgumentList();
}