diff --git a/src/Parsing/Parser.hs b/src/Parsing/Parser.hs index 22f6e5520..4ee5f736b 100644 --- a/src/Parsing/Parser.hs +++ b/src/Parsing/Parser.hs @@ -40,6 +40,7 @@ module Parsing.Parser , typescriptParser' -- * Canonical sets of parsers , aLaCarteParsers +, preciseParsers , allParsers ) where @@ -280,6 +281,11 @@ aLaCarteParsers = , tsxParser' ] +preciseParsers :: c Py.Term => [(Language, SomeParser c Loc)] +preciseParsers = + [ pythonParserPrecise' + ] + allParsers :: ( c (Term (Sum Go.Syntax)) , c (Term (Sum Haskell.Syntax))