mirror of
https://github.com/sharkdp/bat.git
synced 2025-01-18 20:11:03 +00:00
Add PureScript syntax test
This commit is contained in:
parent
57c1a7fd69
commit
4d6b2fec13
89
tests/syntax-tests/highlighted/PureScript/test.purs
Normal file
89
tests/syntax-tests/highlighted/PureScript/test.purs
Normal file
@ -0,0 +1,89 @@
|
||||
[38;2;117;113;94m-- | This module defines a datatype `Pair` together with a few useful instances[0m
|
||||
[38;2;117;113;94m-- | and helper functions. Note that this is not just `Tuple a a` but rather a[0m
|
||||
[38;2;117;113;94m-- | list with exactly two elements. Specifically, the `Functor` instance maps[0m
|
||||
[38;2;117;113;94m-- | over both values (in contrast to the `Functor` instance for `Tuple a`).[0m
|
||||
[38;2;249;38;114mmodule[0m[38;2;248;248;242m [0m[38;2;248;248;242mData.Pair[0m
|
||||
[38;2;248;248;242m ( [0m[38;2;248;248;242mPair[0m[38;2;248;248;242m(..)[0m
|
||||
[38;2;248;248;242m , (~)[0m
|
||||
[38;2;248;248;242m , [0m[38;2;248;248;242mfst[0m
|
||||
[38;2;248;248;242m , [0m[38;2;248;248;242msnd[0m
|
||||
[38;2;248;248;242m , [0m[38;2;248;248;242mcurry[0m
|
||||
[38;2;248;248;242m , [0m[38;2;248;248;242muncurry[0m
|
||||
[38;2;248;248;242m , [0m[38;2;248;248;242mswap[0m
|
||||
[38;2;248;248;242m ) [0m[38;2;249;38;114mwhere[0m
|
||||
|
||||
[38;2;249;38;114mimport[0m[38;2;248;248;242m [0m[38;2;248;248;242mPrelude[0m
|
||||
|
||||
[38;2;249;38;114mimport[0m[38;2;248;248;242m [0m[38;2;248;248;242mData.Foldable[0m[38;2;248;248;242m (class [0m[38;2;166;226;46mFoldable[0m[38;2;248;248;242m)[0m
|
||||
[38;2;249;38;114mimport[0m[38;2;248;248;242m [0m[38;2;248;248;242mData.Traversable[0m[38;2;248;248;242m (class [0m[38;2;166;226;46mTraversable[0m[38;2;248;248;242m)[0m
|
||||
[38;2;249;38;114mimport[0m[38;2;248;248;242m [0m[38;2;248;248;242mData.Distributive[0m[38;2;248;248;242m (class [0m[38;2;166;226;46mDistributive[0m[38;2;248;248;242m)[0m
|
||||
|
||||
[38;2;249;38;114mimport[0m[38;2;248;248;242m [0m[38;2;248;248;242mTest.QuickCheck.Arbitrary[0m[38;2;248;248;242m (class [0m[38;2;166;226;46mArbitrary[0m[38;2;248;248;242m, [0m[38;2;166;226;46marbitrary[0m[38;2;248;248;242m)[0m
|
||||
|
||||
[38;2;117;113;94m-- | A pair simply consists of two values of the same type.[0m
|
||||
[38;2;249;38;114mdata[0m[38;2;248;248;242m [0m[38;2;190;132;255mPair[0m[38;2;248;248;242m a [0m[38;2;249;38;114m=[0m[38;2;248;248;242m [0m[38;2;190;132;255mPair[0m[38;2;248;248;242m a a[0m
|
||||
|
||||
[38;2;249;38;114minfixl[0m[38;2;248;248;242m [0m[38;2;190;132;255m6[0m[38;2;248;248;242m [0m[38;2;190;132;255mPair[0m[38;2;248;248;242m [0m[38;2;249;38;114mas[0m[38;2;248;248;242m [0m[38;2;249;38;114m~[0m
|
||||
|
||||
[38;2;117;113;94m-- | Returns the first component of a pair.[0m
|
||||
[38;2;248;248;242mfst ∷ ∀ a[0m[38;2;249;38;114m.[0m[38;2;248;248;242m [0m[38;2;190;132;255mPair[0m[38;2;248;248;242m a → a[0m
|
||||
[38;2;248;248;242mfst (x [0m[38;2;249;38;114m~[0m[38;2;248;248;242m _) [0m[38;2;249;38;114m=[0m[38;2;248;248;242m x[0m
|
||||
|
||||
[38;2;117;113;94m-- | Returns the second component of a pair.[0m
|
||||
[38;2;248;248;242msnd ∷ ∀ a[0m[38;2;249;38;114m.[0m[38;2;248;248;242m [0m[38;2;190;132;255mPair[0m[38;2;248;248;242m a → a[0m
|
||||
[38;2;248;248;242msnd (_ [0m[38;2;249;38;114m~[0m[38;2;248;248;242m y) [0m[38;2;249;38;114m=[0m[38;2;248;248;242m y[0m
|
||||
|
||||
[38;2;117;113;94m-- | Turn a function that expects a pair into a function of two arguments.[0m
|
||||
[38;2;102;217;239mcurry[0m[38;2;248;248;242m ∷ ∀ a b[0m[38;2;249;38;114m.[0m[38;2;248;248;242m ([0m[38;2;190;132;255mPair[0m[38;2;248;248;242m a → b) → a → a → b[0m
|
||||
[38;2;102;217;239mcurry[0m[38;2;248;248;242m f x y [0m[38;2;249;38;114m=[0m[38;2;248;248;242m f (x [0m[38;2;249;38;114m~[0m[38;2;248;248;242m y)[0m
|
||||
|
||||
[38;2;117;113;94m-- | Turn a function of two arguments into a function that expects a pair.[0m
|
||||
[38;2;102;217;239muncurry[0m[38;2;248;248;242m ∷ ∀ a b[0m[38;2;249;38;114m.[0m[38;2;248;248;242m (a → a → b) → [0m[38;2;190;132;255mPair[0m[38;2;248;248;242m a → b[0m
|
||||
[38;2;102;217;239muncurry[0m[38;2;248;248;242m f (x [0m[38;2;249;38;114m~[0m[38;2;248;248;242m y) [0m[38;2;249;38;114m=[0m[38;2;248;248;242m f x y[0m
|
||||
|
||||
[38;2;117;113;94m-- | Exchange the two components of the pair[0m
|
||||
[38;2;248;248;242mswap ∷ ∀ a[0m[38;2;249;38;114m.[0m[38;2;248;248;242m [0m[38;2;190;132;255mPair[0m[38;2;248;248;242m a → [0m[38;2;190;132;255mPair[0m[38;2;248;248;242m a[0m
|
||||
[38;2;248;248;242mswap (x [0m[38;2;249;38;114m~[0m[38;2;248;248;242m y) [0m[38;2;249;38;114m=[0m[38;2;248;248;242m y [0m[38;2;249;38;114m~[0m[38;2;248;248;242m x[0m
|
||||
|
||||
[38;2;248;248;242mderive [0m[38;2;249;38;114minstance[0m[38;2;248;248;242m eqPair ∷ [0m[38;2;190;132;255mEq[0m[38;2;248;248;242m a ⇒ [0m[38;2;190;132;255mEq[0m[38;2;248;248;242m ([0m[38;2;190;132;255mPair[0m[38;2;248;248;242m a)[0m
|
||||
|
||||
[38;2;248;248;242mderive [0m[38;2;249;38;114minstance[0m[38;2;248;248;242m ordPair ∷ [0m[38;2;190;132;255mOrd[0m[38;2;248;248;242m a ⇒ [0m[38;2;190;132;255mOrd[0m[38;2;248;248;242m ([0m[38;2;190;132;255mPair[0m[38;2;248;248;242m a)[0m
|
||||
|
||||
[38;2;249;38;114minstance[0m[38;2;248;248;242m [0m[38;2;255;255;255mshowPair[0m[38;2;248;248;242m ∷ [0m[3;38;2;102;217;239mShow[0m[38;2;248;248;242m [0m[38;2;255;255;255ma[0m[38;2;248;248;242m ⇒ [0m[3;38;2;102;217;239mShow[0m[38;2;248;248;242m ([0m[3;38;2;102;217;239mPair[0m[38;2;248;248;242m [0m[38;2;255;255;255ma[0m[38;2;248;248;242m) [0m[38;2;249;38;114mwhere[0m
|
||||
[38;2;248;248;242m [0m[38;2;102;217;239mshow[0m[38;2;248;248;242m (x [0m[38;2;249;38;114m~[0m[38;2;248;248;242m y) [0m[38;2;249;38;114m=[0m[38;2;248;248;242m [0m[38;2;230;219;116m"[0m[38;2;230;219;116m([0m[38;2;230;219;116m"[0m[38;2;248;248;242m [0m[38;2;249;38;114m<>[0m[38;2;248;248;242m [0m[38;2;102;217;239mshow[0m[38;2;248;248;242m x [0m[38;2;249;38;114m<>[0m[38;2;248;248;242m [0m[38;2;230;219;116m"[0m[38;2;230;219;116m ~ [0m[38;2;230;219;116m"[0m[38;2;248;248;242m [0m[38;2;249;38;114m<>[0m[38;2;248;248;242m [0m[38;2;102;217;239mshow[0m[38;2;248;248;242m y [0m[38;2;249;38;114m<>[0m[38;2;248;248;242m [0m[38;2;230;219;116m"[0m[38;2;230;219;116m)[0m[38;2;230;219;116m"[0m
|
||||
|
||||
[38;2;249;38;114minstance[0m[38;2;248;248;242m [0m[38;2;255;255;255mfunctorPair[0m[38;2;248;248;242m ∷ [0m[3;38;2;102;217;239mFunctor[0m[38;2;248;248;242m [0m[3;38;2;102;217;239mPair[0m[38;2;248;248;242m [0m[38;2;249;38;114mwhere[0m
|
||||
[38;2;248;248;242m map f (x [0m[38;2;249;38;114m~[0m[38;2;248;248;242m y) [0m[38;2;249;38;114m=[0m[38;2;248;248;242m f x [0m[38;2;249;38;114m~[0m[38;2;248;248;242m f y[0m
|
||||
|
||||
[38;2;249;38;114minstance[0m[38;2;248;248;242m [0m[38;2;255;255;255mapplyPair[0m[38;2;248;248;242m ∷ [0m[3;38;2;102;217;239mApply[0m[38;2;248;248;242m [0m[3;38;2;102;217;239mPair[0m[38;2;248;248;242m [0m[38;2;249;38;114mwhere[0m
|
||||
[38;2;248;248;242m apply (f [0m[38;2;249;38;114m~[0m[38;2;248;248;242m g) (x [0m[38;2;249;38;114m~[0m[38;2;248;248;242m y) [0m[38;2;249;38;114m=[0m[38;2;248;248;242m f x [0m[38;2;249;38;114m~[0m[38;2;248;248;242m g y[0m
|
||||
|
||||
[38;2;249;38;114minstance[0m[38;2;248;248;242m [0m[38;2;255;255;255mapplicativePair[0m[38;2;248;248;242m ∷ [0m[3;38;2;102;217;239mApplicative[0m[38;2;248;248;242m [0m[3;38;2;102;217;239mPair[0m[38;2;248;248;242m [0m[38;2;249;38;114mwhere[0m
|
||||
[38;2;248;248;242m [0m[38;2;102;217;239mpure[0m[38;2;248;248;242m x [0m[38;2;249;38;114m=[0m[38;2;248;248;242m x [0m[38;2;249;38;114m~[0m[38;2;248;248;242m x[0m
|
||||
|
||||
[38;2;249;38;114minstance[0m[38;2;248;248;242m [0m[38;2;255;255;255mbindPair[0m[38;2;248;248;242m ∷ [0m[3;38;2;102;217;239mBind[0m[38;2;248;248;242m [0m[3;38;2;102;217;239mPair[0m[38;2;248;248;242m [0m[38;2;249;38;114mwhere[0m
|
||||
[38;2;248;248;242m bind (x [0m[38;2;249;38;114m~[0m[38;2;248;248;242m y) f [0m[38;2;249;38;114m=[0m[38;2;248;248;242m fst (f x) [0m[38;2;249;38;114m~[0m[38;2;248;248;242m snd (f y)[0m
|
||||
|
||||
[38;2;249;38;114minstance[0m[38;2;248;248;242m [0m[38;2;255;255;255mmonadPair[0m[38;2;248;248;242m ∷ [0m[3;38;2;102;217;239mMonad[0m[38;2;248;248;242m [0m[3;38;2;102;217;239mPair[0m
|
||||
|
||||
[38;2;249;38;114minstance[0m[38;2;248;248;242m [0m[38;2;255;255;255msemigroupPair[0m[38;2;248;248;242m ∷ [0m[3;38;2;102;217;239mSemigroup[0m[38;2;248;248;242m [0m[38;2;255;255;255ma[0m[38;2;248;248;242m ⇒ [0m[3;38;2;102;217;239mSemigroup[0m[38;2;248;248;242m ([0m[3;38;2;102;217;239mPair[0m[38;2;248;248;242m [0m[38;2;255;255;255ma[0m[38;2;248;248;242m) [0m[38;2;249;38;114mwhere[0m
|
||||
[38;2;248;248;242m append (x1 [0m[38;2;249;38;114m~[0m[38;2;248;248;242m y1) (x2 [0m[38;2;249;38;114m~[0m[38;2;248;248;242m y2) [0m[38;2;249;38;114m=[0m[38;2;248;248;242m (x1 [0m[38;2;249;38;114m<>[0m[38;2;248;248;242m x2) [0m[38;2;249;38;114m~[0m[38;2;248;248;242m (y1 [0m[38;2;249;38;114m<>[0m[38;2;248;248;242m y2)[0m
|
||||
|
||||
[38;2;249;38;114minstance[0m[38;2;248;248;242m [0m[38;2;255;255;255mmonoidPair[0m[38;2;248;248;242m ∷ [0m[3;38;2;102;217;239mMonoid[0m[38;2;248;248;242m [0m[38;2;255;255;255ma[0m[38;2;248;248;242m ⇒ [0m[3;38;2;102;217;239mMonoid[0m[38;2;248;248;242m ([0m[3;38;2;102;217;239mPair[0m[38;2;248;248;242m [0m[38;2;255;255;255ma[0m[38;2;248;248;242m) [0m[38;2;249;38;114mwhere[0m
|
||||
[38;2;248;248;242m [0m[38;2;102;217;239mmempty[0m[38;2;248;248;242m [0m[38;2;249;38;114m=[0m[38;2;248;248;242m [0m[38;2;102;217;239mmempty[0m[38;2;248;248;242m [0m[38;2;249;38;114m~[0m[38;2;248;248;242m [0m[38;2;102;217;239mmempty[0m
|
||||
|
||||
[38;2;249;38;114minstance[0m[38;2;248;248;242m [0m[38;2;255;255;255mfoldablePair[0m[38;2;248;248;242m ∷ [0m[3;38;2;102;217;239mFoldable[0m[38;2;248;248;242m [0m[3;38;2;102;217;239mPair[0m[38;2;248;248;242m [0m[38;2;249;38;114mwhere[0m
|
||||
[38;2;248;248;242m foldr f z ([0m[38;2;190;132;255mPair[0m[38;2;248;248;242m x y) [0m[38;2;249;38;114m=[0m[38;2;248;248;242m x `f` (y `f` z)[0m
|
||||
[38;2;248;248;242m foldl f z ([0m[38;2;190;132;255mPair[0m[38;2;248;248;242m x y) [0m[38;2;249;38;114m=[0m[38;2;248;248;242m (z `f` x) `f` y[0m
|
||||
[38;2;248;248;242m foldMap f ([0m[38;2;190;132;255mPair[0m[38;2;248;248;242m x y) [0m[38;2;249;38;114m=[0m[38;2;248;248;242m f x [0m[38;2;249;38;114m<>[0m[38;2;248;248;242m f y[0m
|
||||
|
||||
[38;2;249;38;114minstance[0m[38;2;248;248;242m [0m[38;2;255;255;255mtraversablePair[0m[38;2;248;248;242m ∷ [0m[3;38;2;102;217;239mTraversable[0m[38;2;248;248;242m [0m[3;38;2;102;217;239mPair[0m[38;2;248;248;242m [0m[38;2;249;38;114mwhere[0m
|
||||
[38;2;248;248;242m traverse f ([0m[38;2;190;132;255mPair[0m[38;2;248;248;242m x y) [0m[38;2;249;38;114m=[0m[38;2;248;248;242m [0m[38;2;190;132;255mPair[0m[38;2;248;248;242m [0m[38;2;249;38;114m<$>[0m[38;2;248;248;242m f x [0m[38;2;249;38;114m<[0m[38;2;248;248;242m*[0m[38;2;249;38;114m>[0m[38;2;248;248;242m f y[0m
|
||||
[38;2;248;248;242m [0m[38;2;102;217;239msequence[0m[38;2;248;248;242m ([0m[38;2;190;132;255mPair[0m[38;2;248;248;242m mx my) [0m[38;2;249;38;114m=[0m[38;2;248;248;242m [0m[38;2;190;132;255mPair[0m[38;2;248;248;242m [0m[38;2;249;38;114m<$>[0m[38;2;248;248;242m mx [0m[38;2;249;38;114m<[0m[38;2;248;248;242m*[0m[38;2;249;38;114m>[0m[38;2;248;248;242m my[0m
|
||||
|
||||
[38;2;249;38;114minstance[0m[38;2;248;248;242m [0m[38;2;255;255;255mdistributivePair[0m[38;2;248;248;242m ∷ [0m[3;38;2;102;217;239mDistributive[0m[38;2;248;248;242m [0m[3;38;2;102;217;239mPair[0m[38;2;248;248;242m [0m[38;2;249;38;114mwhere[0m
|
||||
[38;2;248;248;242m distribute xs [0m[38;2;249;38;114m=[0m[38;2;248;248;242m map fst xs [0m[38;2;249;38;114m~[0m[38;2;248;248;242m map snd xs[0m
|
||||
[38;2;248;248;242m collect f xs [0m[38;2;249;38;114m=[0m[38;2;248;248;242m map (fst [0m[38;2;249;38;114m<<<[0m[38;2;248;248;242m f) xs [0m[38;2;249;38;114m~[0m[38;2;248;248;242m map (snd [0m[38;2;249;38;114m<<<[0m[38;2;248;248;242m f) xs[0m
|
||||
|
||||
[38;2;249;38;114minstance[0m[38;2;248;248;242m [0m[38;2;255;255;255marbitraryPair[0m[38;2;248;248;242m ∷ [0m[3;38;2;102;217;239mArbitrary[0m[38;2;248;248;242m [0m[38;2;255;255;255ma[0m[38;2;248;248;242m ⇒ [0m[3;38;2;102;217;239mArbitrary[0m[38;2;248;248;242m ([0m[3;38;2;102;217;239mPair[0m[38;2;248;248;242m [0m[38;2;255;255;255ma[0m[38;2;248;248;242m) [0m[38;2;249;38;114mwhere[0m
|
||||
[38;2;248;248;242m arbitrary [0m[38;2;249;38;114m=[0m[38;2;248;248;242m [0m[38;2;190;132;255mPair[0m[38;2;248;248;242m [0m[38;2;249;38;114m<$>[0m[38;2;248;248;242m arbitrary [0m[38;2;249;38;114m<[0m[38;2;248;248;242m*[0m[38;2;249;38;114m>[0m[38;2;248;248;242m arbitrary[0m
|
89
tests/syntax-tests/source/PureScript/test.purs
Normal file
89
tests/syntax-tests/source/PureScript/test.purs
Normal file
@ -0,0 +1,89 @@
|
||||
-- | This module defines a datatype `Pair` together with a few useful instances
|
||||
-- | and helper functions. Note that this is not just `Tuple a a` but rather a
|
||||
-- | list with exactly two elements. Specifically, the `Functor` instance maps
|
||||
-- | over both values (in contrast to the `Functor` instance for `Tuple a`).
|
||||
module Data.Pair
|
||||
( Pair(..)
|
||||
, (~)
|
||||
, fst
|
||||
, snd
|
||||
, curry
|
||||
, uncurry
|
||||
, swap
|
||||
) where
|
||||
|
||||
import Prelude
|
||||
|
||||
import Data.Foldable (class Foldable)
|
||||
import Data.Traversable (class Traversable)
|
||||
import Data.Distributive (class Distributive)
|
||||
|
||||
import Test.QuickCheck.Arbitrary (class Arbitrary, arbitrary)
|
||||
|
||||
-- | A pair simply consists of two values of the same type.
|
||||
data Pair a = Pair a a
|
||||
|
||||
infixl 6 Pair as ~
|
||||
|
||||
-- | Returns the first component of a pair.
|
||||
fst ∷ ∀ a. Pair a → a
|
||||
fst (x ~ _) = x
|
||||
|
||||
-- | Returns the second component of a pair.
|
||||
snd ∷ ∀ a. Pair a → a
|
||||
snd (_ ~ y) = y
|
||||
|
||||
-- | Turn a function that expects a pair into a function of two arguments.
|
||||
curry ∷ ∀ a b. (Pair a → b) → a → a → b
|
||||
curry f x y = f (x ~ y)
|
||||
|
||||
-- | Turn a function of two arguments into a function that expects a pair.
|
||||
uncurry ∷ ∀ a b. (a → a → b) → Pair a → b
|
||||
uncurry f (x ~ y) = f x y
|
||||
|
||||
-- | Exchange the two components of the pair
|
||||
swap ∷ ∀ a. Pair a → Pair a
|
||||
swap (x ~ y) = y ~ x
|
||||
|
||||
derive instance eqPair ∷ Eq a ⇒ Eq (Pair a)
|
||||
|
||||
derive instance ordPair ∷ Ord a ⇒ Ord (Pair a)
|
||||
|
||||
instance showPair ∷ Show a ⇒ Show (Pair a) where
|
||||
show (x ~ y) = "(" <> show x <> " ~ " <> show y <> ")"
|
||||
|
||||
instance functorPair ∷ Functor Pair where
|
||||
map f (x ~ y) = f x ~ f y
|
||||
|
||||
instance applyPair ∷ Apply Pair where
|
||||
apply (f ~ g) (x ~ y) = f x ~ g y
|
||||
|
||||
instance applicativePair ∷ Applicative Pair where
|
||||
pure x = x ~ x
|
||||
|
||||
instance bindPair ∷ Bind Pair where
|
||||
bind (x ~ y) f = fst (f x) ~ snd (f y)
|
||||
|
||||
instance monadPair ∷ Monad Pair
|
||||
|
||||
instance semigroupPair ∷ Semigroup a ⇒ Semigroup (Pair a) where
|
||||
append (x1 ~ y1) (x2 ~ y2) = (x1 <> x2) ~ (y1 <> y2)
|
||||
|
||||
instance monoidPair ∷ Monoid a ⇒ Monoid (Pair a) where
|
||||
mempty = mempty ~ mempty
|
||||
|
||||
instance foldablePair ∷ Foldable Pair where
|
||||
foldr f z (Pair x y) = x `f` (y `f` z)
|
||||
foldl f z (Pair x y) = (z `f` x) `f` y
|
||||
foldMap f (Pair x y) = f x <> f y
|
||||
|
||||
instance traversablePair ∷ Traversable Pair where
|
||||
traverse f (Pair x y) = Pair <$> f x <*> f y
|
||||
sequence (Pair mx my) = Pair <$> mx <*> my
|
||||
|
||||
instance distributivePair ∷ Distributive Pair where
|
||||
distribute xs = map fst xs ~ map snd xs
|
||||
collect f xs = map (fst <<< f) xs ~ map (snd <<< f) xs
|
||||
|
||||
instance arbitraryPair ∷ Arbitrary a ⇒ Arbitrary (Pair a) where
|
||||
arbitrary = Pair <$> arbitrary <*> arbitrary
|
Loading…
x
Reference in New Issue
Block a user