aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMarc Jakobi <marc.jakobi@tiko.energy>2023-10-08 21:34:55 +0200
committerAmaan Qureshi <amaanq12@gmail.com>2023-10-15 14:32:51 -0400
commitd33dbdab0138d78b285e9dddc8287239776488f5 (patch)
tree576f83e06f6d36f58cb83a31bd544c68ced19f31 /tests
parentfix(typescript): do not highlight undefined as variable (diff)
downloadnvim-treesitter-d33dbdab0138d78b285e9dddc8287239776488f5.tar
nvim-treesitter-d33dbdab0138d78b285e9dddc8287239776488f5.tar.gz
nvim-treesitter-d33dbdab0138d78b285e9dddc8287239776488f5.tar.bz2
nvim-treesitter-d33dbdab0138d78b285e9dddc8287239776488f5.tar.lz
nvim-treesitter-d33dbdab0138d78b285e9dddc8287239776488f5.tar.xz
nvim-treesitter-d33dbdab0138d78b285e9dddc8287239776488f5.tar.zst
nvim-treesitter-d33dbdab0138d78b285e9dddc8287239776488f5.zip
feat(haskell): highlights improvements
- Consider functions with only one value on the rhs as variables - Applied composition: `(f . g) <param>` -> `@function.call` - View patterns - `@field` in record update expression - type_tuple and type_list as variables - quantifier for `exp_apply (<rhs>)+ (variable)` - type_tuple and type_list as variables - Treat signatures with only one value on the rhs as variables (except for `IO a`) -> Fixes #5505. - Remove redundant anchors from signature function queries. - Move signature function queries to give them higher priority - Scoped function types - Add signature query to function with parameters query
Diffstat (limited to 'tests')
-rw-r--r--tests/query/highlights/haskell/test.hs61
1 files changed, 56 insertions, 5 deletions
diff --git a/tests/query/highlights/haskell/test.hs b/tests/query/highlights/haskell/test.hs
index 84d41769c..cd5db435e 100644
--- a/tests/query/highlights/haskell/test.hs
+++ b/tests/query/highlights/haskell/test.hs
@@ -26,6 +26,9 @@ import qualified Chronos as C
import FooMod (BarTy (barField))
-- ^ @field
+x = mempty { field = 5 }
+ -- ^ @field
+
data ADT
-- ^ @keyword
= A Int
@@ -70,6 +73,7 @@ recordWildCard Rec { field } = field
recordDotSyntax rec = rec.field
-- ^ @field
+
main :: IO ()
-- ^ @function
-- ^ @operator
@@ -111,15 +115,26 @@ someInfix x = fromIntegral x `myAdd` floatVal
-- ^ @variable
-- ^ @variable
floatVal :: Double
+ -- ^ @variable
floatVal = 5.5
-- ^ @variable
-- ^ @float
intVal :: Int
+ -- ^ @variable
intVal = getInt 5
-- ^ @variable
boolVal :: Bool
+ -- ^ @variable
boolVal = bool False True $ 1 + 2 == 3
-- ^ @variable
+ refVal = boolVal
+ -- ^ @variable
+ namespacedRecord = NS.Rec { field = bar }
+ -- ^ @variable
+ record = Rec { field = bar }
+ -- ^ @variable
+ constructorRef = A
+ -- ^ @function
isInt :: Either Double Int -> Bool
-- ^ @function
isInt eith@Left{} = False
@@ -132,7 +147,6 @@ someInfix x = fromIntegral x `myAdd` floatVal
isInt (Right _) = True
-- ^ @function
-
someIOaction :: IO ()
-- ^ @function
someIOaction = do
@@ -175,10 +189,30 @@ intFun :: Int -> Int
intFun = 5
-- ^ @function
+undefinedFun :: Int -> Int
+undefinedFun = undefined
+-- ^ @function
+
mbInt :: Maybe Int
+-- ^ @variable
mbInt = Just 5
-- ^ @variable
+tupleVal :: (a, b)
+-- ^@variable
+tupleVal = (1, "x")
+-- ^@variable
+
+listVal :: [a]
+-- ^@variable
+listVal = [1, 2]
+-- ^@variable
+-- ^@variable
+condVal = if otherwise
+-- ^@variable
+ then False
+ else True
+
getLambda x = \y -> x `SomeModule.someInfix` y
-- ^ @parameter
-- ^ @namespace
@@ -227,7 +261,12 @@ assertNonEmpty xs = xs `shouldSatisfy` not . null
-- ^ @variable
-- ^ @function
-- ^ @function
-
+appliedComposition f g var = (f . g) var
+ -- ^ @function.call
+ -- ^ @function.call
+appliedComposition f g var = (NS.f . NS.g) var
+ -- ^ @function.call
+ -- ^ @function.call
param1 |*| param2 = Qu $ param1 * param2
-- ^ @parameter
-- ^ @parameter
@@ -271,6 +310,18 @@ typeApplication x y = someFun @ty x y
encrypt key pass = encrypt (defaultOAEPParams SHA1) key pass
-- ^ @variable
-- ^ @variable
-recordUpdate x y rec = someFun rec {field = 5} x y
- -- ^ @variable
- -- ^ @variable
+recordUpdate x y rec = someFun rec {field = 5} (x, x) y
+ -- ^ @variable
+ -- ^ @variable
+viewPattern (func -> var) = 5
+ -- ^ @function.call
+ -- ^ @parameter
+g (func :: a -> b) x = func y
+ -- ^ @parameter
+ -- ^ @function
+lambdaAlias :: LambdaAlias
+lambdaAlias _ _ _ = undefined
+ -- ^ @function
+spec :: Spec
+spec = describe "test ns" $ it "test case" pending
+-- ^ @variable