Skip to content

Commit ac71d02

Browse files
committed
Parser: rm symbol & symbols from export
They are just `lexeme . char`
1 parent ad9bf40 commit ac71d02

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/Nix/Parser.hs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ module Nix.Parser
3535
, nixInt
3636
, nixBool
3737
, nixNull
38-
, symbol
39-
, symbols
4038
, whiteSpace
4139
)
4240
where
@@ -187,7 +185,6 @@ parens = on between symbol '(' ')'
187185
braces :: Parser a -> Parser a
188186
braces = on between symbol '{' '}'
189187

190-
-- angles = between (symbol "<") (symbol ">")
191188
brackets :: Parser (NExprF f) -> Parser (NExprF f)
192189
brackets = on between symbol '[' ']'
193190

0 commit comments

Comments
 (0)