Home
last modified time | relevance | path

Searched refs:serializeContext (Results 1 – 3 of 3) sorted by relevance

/plugin/asciidocjs/node_modules/clean-css/lib/writer/
Dsource-maps.js12 function store(serializeContext, element) { argument
16 var wrap = serializeContext.wrap;
18 wrap(serializeContext, value);
19 track(serializeContext, value, mappings);
20 serializeContext.output.push(value);
23 function wrap(serializeContext, value) { argument
24 if (serializeContext.column + value.length > serializeContext.format.wrapAt) {
25 track(serializeContext, serializeContext.format.breakWith, false);
26 serializeContext.output.push(serializeContext.format.breakWith);
30 function track(serializeContext, value, mappings) { argument
[all …]
Dsimple.js3 function store(serializeContext, token) { argument
7 var wrap = serializeContext.wrap;
9 wrap(serializeContext, value);
10 track(serializeContext, value);
11 serializeContext.output.push(value);
14 function wrap(serializeContext, value) { argument
15 if (serializeContext.column + value.length > serializeContext.format.wrapAt) {
16 track(serializeContext, serializeContext.format.breakWith);
17 serializeContext.output.push(serializeContext.format.breakWith);
21 function track(serializeContext, value) { argument
[all …]
Done-time.js3 function store(serializeContext, token) { argument
4 serializeContext.output.push(typeof token == 'string' ? token : token[1]);