Skip to content

Commit 1ca43d7

Browse files
committed
Add list & string
1 parent a885b01 commit 1ca43d7

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

queries/haskell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Adds support for the Haskell programming language.
3434
- [ ] `functionCallee.constructor`
3535
- [x] `functionName`
3636
- [ ] `ifStatement`
37-
- [ ] `list`
37+
- [x] `list`
3838
- [ ] `map`
3939
- [ ] `name`
4040
- [ ] `name.assignment`
@@ -49,7 +49,7 @@ Adds support for the Haskell programming language.
4949
- [ ] `statement`
5050
- [ ] `statement.iteration.document`
5151
- [ ] `statement.iteration.block`
52-
- [ ] `string`
52+
- [x] `string`
5353
- [ ] `type`
5454
- [ ] `class`
5555
- [ ] `class.instance`

queries/haskell.scm

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1+
;; import haskell/haskell.anonymousFunction.scm
12
;; import haskell/haskell.argumentOrParameter.scm
23
;; import haskell/haskell.argumentOrParameter.iteration.scm
34
;; import haskell/haskell.branch.scm
45
;; import haskell/haskell.branch.iteration.scm
56
;; import haskell/haskell.functionCall.scm
67
;; import haskell/haskell.functionCallee.scm
78
;; import haskell/haskell.functionName.scm
9+
;; import haskell/haskell.list.scm
810
;; import haskell/haskell.name.function.scm
911
;; import haskell/haskell.namedFunction.scm
12+
;; import haskell/haskell.string.scm

queries/haskell/haskell.list.scm

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
;; list: list
2+
(list) @list

queries/haskell/haskell.string.scm

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
;; string: string
2+
(string) @string

0 commit comments

Comments
 (0)