1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
implementation module Yard
// Taken from https://github.com/dopefishh/cc1516/blob/master/yard.icl
// To this file, an other license applies:
/*
The MIT License (MIT)
Copyright (c) 2016 Pim Jager & Mart Lubbers
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
import StdTuple
import StdClass
import StdString
import StdList
import StdInt
from Data.List import intersperse
from Text import instance Text String, class Text(concat)
import Data.Functor
import Data.Either
import Control.Monad
import Control.Applicative
from Data.Func import $
import Data.Void
runParser :: (Parser a b) [a] -> (Either String b, [a])
runParser (Parser f) i = f i
instance Functor (Parser a) where fmap f m = liftM f m
instance Applicative (Parser a)
where
pure a = Parser \i -> (Right a, i)
(<*>) sf p = ap sf p
instance Monad (Parser a)
where
bind p f = Parser \i -> case runParser p i of
(Right r, rest) = runParser (f r) rest
(Left e, _) = (Left e, i)
instance Alternative (Parser a)
where
empty = Parser \i -> (Left "" , i)
(<|>) p1 p2 = Parser \i -> case runParser p1 i of
(Right r, rest) = (Right r, rest)
(Left e1, rest) = case runParser p2 i of
(Left e2, rest) = (Left e2, i)
(Right r, rest) = (Right r, rest)
//Try parser, if it fails decorate the error with the given String and position
(<?>) :: (Parser a b) String -> Parser a b
(<?>) p e = Parser \i -> case runParser p i of
(Left e1, rest) = (Left e, rest)
(Right r, rest) = (Right r, rest)
fail :: Parser a b
fail = empty
top :: Parser a a
top = Parser \i -> case i of
[] = (Left "", [])
[x:xs] = (Right x, xs)
peek :: Parser a a
peek = Parser \i -> case i of
[] = (Left "", [])
[x:xs] = (Right x, [x:xs])
(until) infix 2 :: (Parser a b) (Parser a c) -> Parser a [b]
(until) p guard = try $ until` p guard []
where
until` :: (Parser a b) (Parser a c) [b] -> Parser a [b]
until` p guard acc = Parser \i -> case runParser guard i of
(Right _, rest) = (Right acc, rest)
(Left _, _) = case runParser p i of
(Right r, rest) = runParser (until` p guard [r:acc]) rest
(Left e, _) = (Left e, i)
try :: (Parser a b) -> Parser a b
try p = Parser \i -> case runParser p i of
(Left e, _) = (Left e, i)
(Right r, rest) = (Right r, rest)
eof :: Parser a Void
eof = Parser \i -> case i of
[] = (Right Void, [])
_ = (Left "", i)
satisfy :: (a -> Bool) -> Parser a a
satisfy f = top >>= \r -> if (f r) (pure r) fail
check :: (a -> Bool) -> Parser a a
check f = peek >>= \r -> if (f r) (pure r) fail
item :: a -> Parser a a | Eq a
item a = satisfy ((==)a)
list :: [a] -> Parser a [a] | Eq a
list as = mapM item as
|