File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/parser Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 2727
2828import static com .oracle .graal .python .runtime .exception .PythonErrorType .SyntaxError ;
2929
30- import java .util .HashMap ;
31- import java .util .Map ;
3230import java .util .concurrent .ConcurrentHashMap ;
3331import java .util .regex .Pattern ;
3432
5351import com .oracle .truffle .api .source .SourceSection ;
5452
5553public final class PythonParserImpl implements PythonParser {
56- private static final Map <String , ParserRuleContext > cachedParseTrees = new ConcurrentHashMap <>();
54+ private static final ConcurrentHashMap <String , ParserRuleContext > cachedParseTrees = new ConcurrentHashMap <>();
5755
5856 private static Python3Parser getPython3Parser (CodePointCharStream fromString ) {
5957 Python3Parser parser = new Builder .Parser (fromString ).build ();
You can’t perform that action at this time.
0 commit comments