forked from VimPlug/jedi
Add the grammar as an argument to saving the parser.
This makes collisions of different grammars when loading from the cache impossible.
This commit is contained in:
@@ -146,10 +146,10 @@ class NewDiffParser(object):
|
||||
lines##### TODO
|
||||
tokens = tokenize(lines)
|
||||
if self._module is None:
|
||||
self._module = load_parser(self._path)
|
||||
self._module = load_parser(grammar, self._path)
|
||||
if self._module is None:
|
||||
self._module = self._parser.parse(tokens)
|
||||
save_parser(self._path, self._module)
|
||||
save_parser(grammar, self._path, self._module)
|
||||
return self._module
|
||||
|
||||
return bla
|
||||
|
||||
Reference in New Issue
Block a user