mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 04:51:24 +07:00
[python] Fix parameter names of PyElementGenerator.createBinaryExpression
GitOrigin-RevId: 7620ab27f1cac4dc386fecdd4a6c5d63a8f341ce
This commit is contained in:
committed by
intellij-monorepo-bot
parent
4adbd23758
commit
cb4a20178c
@@ -50,7 +50,9 @@ public abstract class PyElementGenerator extends PyAstElementGenerator {
|
||||
|
||||
public abstract ASTNode createDot();
|
||||
|
||||
public abstract PyBinaryExpression createBinaryExpression(String s, PyExpression expr, PyExpression listLiteral);
|
||||
public abstract PyBinaryExpression createBinaryExpression(@NotNull String operator,
|
||||
@NotNull PyExpression leftOperand,
|
||||
@NotNull PyExpression rightOperand);
|
||||
|
||||
@Override
|
||||
public @NotNull PyExpression createExpressionFromText(@NotNull LanguageLevel languageLevel, @NotNull String text) throws IncorrectOperationException {
|
||||
|
||||
Reference in New Issue
Block a user