This repository has been archived by the owner on Nov 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstrip-comments.js
73 lines (68 loc) · 2.12 KB
/
strip-comments.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
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
import error from "./error.js";
function unexpectedToken(type, occasion, filename, line) {
var msg = "`" + type + "` encountered when " + occasion;
throw error("UNEXPECTED_TOKEN", msg, { filename: filename, line: line });
}
export default function stripComments(input, options) {
options = options || {};
// Default: strip unbuffered comments and leave buffered ones alone
var stripUnbuffered = options.stripUnbuffered !== false;
var stripBuffered = options.stripBuffered === true;
var filename = options.filename;
var out = [];
// If we have encountered a comment token and are not sure if we have gotten
// out of the comment or not
var inComment = false;
// If we are sure that we are in a block comment and all tokens except
// `end-pipeless-text` should be ignored
var inPipelessText = false;
return input.filter(function (tok) {
switch (tok.type) {
case "comment":
if (inComment) {
unexpectedToken(
"comment",
"already in a comment",
filename,
tok.line,
);
} else {
inComment = tok.buffer ? stripBuffered : stripUnbuffered;
return !inComment;
}
case "start-pipeless-text":
if (!inComment) return true;
if (inPipelessText) {
unexpectedToken(
"start-pipeless-text",
"already in pipeless text mode",
filename,
tok.line,
);
}
inPipelessText = true;
return false;
case "end-pipeless-text":
if (!inComment) return true;
if (!inPipelessText) {
unexpectedToken(
"end-pipeless-text",
"not in pipeless text mode",
filename,
tok.line,
);
}
inPipelessText = false;
inComment = false;
return false;
// There might be a `text` right after `comment` but before
// `start-pipeless-text`. Treat it accordingly.
case "text":
return !inComment;
default:
if (inPipelessText) return false;
inComment = false;
return true;
}
});
}