mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
[bazel] Fix compilation in //python:python
GitOrigin-RevId: 2437517a48f251444fa3c54bddff9578294b336e
This commit is contained in:
committed by
intellij-monorepo-bot
parent
40473f1b03
commit
5f6c82d548
@@ -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;
|
||||
}
|
||||
|
||||
@@ -7,6 +7,7 @@ import com.intellij.openapi.util.text.StringUtil;
|
||||
|
||||
%%
|
||||
|
||||
%public
|
||||
%class _PythonLexer
|
||||
%implements FlexLexerEx
|
||||
|
||||
|
||||
Reference in New Issue
Block a user