[bazel] Fix compilation in //python:python

GitOrigin-RevId: 2437517a48f251444fa3c54bddff9578294b336e
This commit is contained in:
Ilia Kirianovskii
2025-04-28 23:00:02 +02:00
committed by intellij-monorepo-bot
parent 40473f1b03
commit 5f6c82d548
2 changed files with 3 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ import com.jetbrains.python.PyTokenTypes;
import com.intellij.openapi.util.text.StringUtil;
class _PythonLexer implements FlexLexerEx {
public class _PythonLexer implements FlexLexerEx {
/** This character denotes the end of file */
public static final int YYEOF = -1;
@@ -1020,7 +1020,7 @@ private int getSpaceLength(CharSequence string) {
*
* @param in the java.io.Reader to read input from.
*/
_PythonLexer(java.io.Reader in, PythonLexerKind kind) {
public _PythonLexer(java.io.Reader in, PythonLexerKind kind) {
this.myKind = kind;
this.zzReader = in;
}

View File

@@ -7,6 +7,7 @@ import com.intellij.openapi.util.text.StringUtil;
%%
%public
%class _PythonLexer
%implements FlexLexerEx