We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2583afc commit 66dae39Copy full SHA for 66dae39
plugins/hls-alternate-number-format-plugin/src/Ide/Plugin/Literals.hs
@@ -9,6 +9,7 @@ module Ide.Plugin.Literals (
9
, Literal(..)
10
, getSrcText
11
, getSrcSpan
12
+ , testCodeForPreCommitGithubAction
13
) where
14
15
import Data.Maybe (maybeToList)
@@ -71,6 +72,9 @@ type LocPat a = GenLocated SrcSpan (Pat a)
71
72
type LocPat a = LPat a
73
#endif
74
75
+testCodeForPreCommitGithubAction :: String
76
+testCodeForPreCommitGithubAction = undefined
77
+
78
-- | Destructure Patterns to unwrap any Literals
79
getPattern :: LocPat GhcPs -> Maybe Literal
80
getPattern (L (locA -> (RealSrcSpan patSpan _)) pat) = case pat of
0 commit comments