-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathelm-coverage.json
149 lines (149 loc) · 4.5 KB
/
elm-coverage.json
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"$schema": "http://json-schema.org/draft-06/schema#",
"type": "object",
"properties": {
"coverageData": {
"description": "Mapping of modules to coverage data.",
"type": "object",
"patternProperties": {
"^.*$": {
"type": "array",
"items": {
"$ref": "#/definitions/annotation"
}
}
}
},
"moduleMap": {
"description": "Mapping of modules to filenames.",
"type": "object",
"patternProperties": {
"^.*$": {
"type": "string"
}
}
}
},
"additionalProperties": false,
"definitions": {
"annotation": {
"description": "Each annotation has a region identified by the `to` and `from` properties. These regions may be contained in other regions, but can never overlap only partially. An annotation has an option `count` property which represents the number of times this expression was evaluated. When the `count` is missing, the expression was never evaluated.",
"type": "object",
"anyOf": [
{
"$ref": "#/definitions/declaration"
},
{
"$ref": "#/definitions/complexityAnnotation"
},
{
"$ref": "#/definitions/simpleAnnotation"
}
]
},
"declaration": {
"description": "A (top-level) declaration defines one (or more) values; which may be constants or functions",
"properties": {
"type": {
"const": "declaration"
},
"complexity": {
"type": "integer"
},
"name": {
"type": "string"
},
"count": {
"type": "integer"
},
"from": {
"$ref": "#/definitions/location"
},
"to": {
"$ref": "#/definitions/location"
}
},
"required": [
"type",
"complexity",
"name",
"from",
"to"
],
"additionalProperties": false
},
"complexityAnnotation": {
"description": "Lambdas and let-declarations",
"properties": {
"type": {
"enum": [
"letDeclaration",
"lambdaBody"
]
},
"complexity": {
"type": "integer"
},
"count": {
"type": "integer"
},
"from": {
"$ref": "#/definitions/location"
},
"to": {
"$ref": "#/definitions/location"
}
},
"required": [
"type",
"complexity",
"from",
"to"
],
"additionalProperties": false
},
"simpleAnnotation": {
"description": "branches",
"properties": {
"type": {
"enum": [
"ifElseBranch",
"caseBranch"
]
},
"count": {
"type": "integer"
},
"from": {
"$ref": "#/definitions/location"
},
"to": {
"$ref": "#/definitions/location"
}
},
"required": [
"type",
"from",
"to"
],
"additionalProperties": false
},
"location": {
"additionalProperties": false,
"properties": {
"line": {
"description": "Line number, starts at 1",
"type": "integer"
},
"column": {
"description": "Column, starts at 1",
"type": "integer"
}
},
"required": [
"line",
"column"
]
}
}
}