-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patherrors.star
36 lines (28 loc) · 936 Bytes
/
errors.star
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
errors is package{
import location
private type errorMsg is errorMsg(string,list of srcLoc)
private def errorActor is actor{
errors has type ref list of errorMsg
var errors := list of [];
on Msg on error do
extend errors with Msg
prc reportAllErrors() do {
if not isEmpty(errors) then {
logMsg(warning,"errors and warnings:")
for errorMsg(Msg,Lc) in errors do
logMsg(warning,display(Lc),Msg)
}
else
logMsg(info,"No errors or warnings")
}
}
prc reportAllErrors() do
request errorActor's reportAllErrors to reportAllErrors()
prc reportError(Msg,Locs) do {
logMsg(info,"Error: #Msg at $Locs")
notify errorActor with errorMsg(Msg,Locs) on error
}
fun isErrorFree() is noNewErrors(0)
fun errorCount() is query errorActor's errors with size(errors)
fun noNewErrors(mark) is query errorActor's errors with size(errors)=mark
}