Skip to content

Commit

Permalink
Remove unused skipBetween
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrattli committed May 3, 2021
1 parent 1a04b69 commit b05ec33
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/NpgsqlFSharpParser/Parser.fs
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,6 @@ let manyCharsBetween popen pclose pchar = popen >>? manyCharsTill pchar pclose
// Parses any string between popen and pclose
let anyStringBetween popen pclose = manyCharsBetween popen pclose anyChar

let skipBetween popen pclose = popen >>? skipManyTill skipAnyChar pclose

// Cannot be a reserved keyword.
let unquotedIdentifier : Parser<string, unit> =
let isIdentifierFirstChar token = isLetter token
Expand Down

0 comments on commit b05ec33

Please sign in to comment.