check if op.lines is in sync with atext-newlines
Conflicts: src/static/js/Changeset.jspull/2405/head
parent
251a75346d
commit
51c14d9947
|
@ -916,6 +916,8 @@ exports.applyToText = function (cs, str) {
|
||||||
var csIter = exports.opIterator(unpacked.ops);
|
var csIter = exports.opIterator(unpacked.ops);
|
||||||
var bankIter = exports.stringIterator(unpacked.charBank);
|
var bankIter = exports.stringIterator(unpacked.charBank);
|
||||||
var strIter = exports.stringIterator(str);
|
var strIter = exports.stringIterator(str);
|
||||||
|
var newlines = 0
|
||||||
|
var newlinefail = false
|
||||||
var assem = exports.stringAssembler();
|
var assem = exports.stringAssembler();
|
||||||
while (csIter.hasNext()) {
|
while (csIter.hasNext()) {
|
||||||
var op = csIter.next();
|
var op = csIter.next();
|
||||||
|
@ -925,16 +927,24 @@ exports.applyToText = function (cs, str) {
|
||||||
break;
|
break;
|
||||||
case '-':
|
case '-':
|
||||||
removedLines += op.lines;
|
removedLines += op.lines;
|
||||||
|
newlines = strIter.newlines()
|
||||||
strIter.skip(op.chars);
|
strIter.skip(op.chars);
|
||||||
|
if(!(newlines - strIter.newlines() == op.lines)){
|
||||||
|
newlinefail = true
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case '=':
|
case '=':
|
||||||
|
newlines = strIter.newlines()
|
||||||
assem.append(strIter.take(op.chars));
|
assem.append(strIter.take(op.chars));
|
||||||
|
if(!(newlines - strIter.newlines() == op.lines)){
|
||||||
|
newlinefail = true
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
exports.assert(totalNrOfLines >= removedLines,"cannot remove ", removedLines, " lines from text with ", totalNrOfLines, " lines");
|
exports.assert(totalNrOfLines >= removedLines,"cannot remove ", removedLines, " lines from text with ", totalNrOfLines, " lines");
|
||||||
assem.append(strIter.take(strIter.remaining()));
|
assem.append(strIter.take(strIter.remaining()));
|
||||||
return assem.toString();
|
return [assem.toString(),newlinefail];
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1605,8 +1615,12 @@ exports.makeAText = function (text, attribs) {
|
||||||
* @param pool {AttribPool} Attribute Pool to add to
|
* @param pool {AttribPool} Attribute Pool to add to
|
||||||
*/
|
*/
|
||||||
exports.applyToAText = function (cs, atext, pool) {
|
exports.applyToAText = function (cs, atext, pool) {
|
||||||
|
var text = exports.applyToText(cs, atext.text)
|
||||||
|
if(text[1]){
|
||||||
|
throw new Error()
|
||||||
|
}
|
||||||
return {
|
return {
|
||||||
text: exports.applyToText(cs, atext.text),
|
text: text[0],
|
||||||
attribs: exports.applyToAttribution(cs, atext.attribs, pool)
|
attribs: exports.applyToAttribution(cs, atext.attribs, pool)
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue