Skip to content

Commit 6a53b27

Browse files
committed
Add test for #189
1 parent 2e8e769 commit 6a53b27

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## x.x.x - Unreleased
22

3-
- Add support for Alex and Happy
3+
- Add support for Alex and Happy ([#97](https://github.com/JustusAdam/language-haskell/issues/97)), thanks to [@matthewess](https://github.com/matthewess).
44

55
## 3.4.0 - 25.02.2021
66

test/test.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ ticketsBroken=(
1414
"T0165.hs"
1515
"T0167.hs"
1616
"T0178.hs"
17+
"T0189.y"
1718
)
1819

1920
# Colours used to display test outputs.

test/tickets/T0189.y

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
-- SYNTAX TEST "source.haskell.happy" "Happy"
2+
3+
foo :: { Foo }
4+
: foo { $1 }
5+
-- ^^ variable.parameter.happy
6+
7+
8+
fooBar :: { (Foo, Bar) }
9+
: foo bar { ($1, $2) }
10+
-- ^^ ^^ variable.parameter.happy

0 commit comments

Comments
 (0)