forked from source-academy/sicp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwarnings.js
executable file
·45 lines (38 loc) · 1.17 KB
/
warnings.js
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
export const checkIndexBadEndWarning = indexStr => {
const last = indexStr.slice(-1);
if (last == "!" || last == "@") {
console.log(
"WARNING, index ends with special character: " + indexStr + "\n"
);
}
};
export const checkLongLineWarning = str => {
const lines = str.split("\n");
for (const line of lines) {
if (line.length > 75) {
console.log(
"WARNING, line is too long (>75 chars) and will overflow the page:\n" +
line +
"\n"
);
}
}
};
export const missingRequireWarning = required => {
console.log("WARNING, REQUIRES not found: " + required + "\n");
};
export const missingExampleWarning = name => {
console.log("WARNING, EXAMPLE not found: " + name + "\n");
};
export const repeatedNameWarning = name => {
console.log("WARNING, Repeated SNIPPET name: " + name + "\n");
};
export const repeatedRefNameWarning = name => {
console.log("WARNING, Repeated REF name: " + name + "\n");
};
export const missingExerciseWarning = name => {
console.log("WARNING, EXERCISE not found:" + name + "\n");
};
export const missingReferenceWarning = name => {
console.log("WARNING, REF not found:" + name + "\n");
};