Fixing printing of continuation prompt tags.
This commit is contained in:
parent
bbe46ea79d
commit
30e62139d6
|
@ -88,11 +88,26 @@
|
|||
|
||||
};
|
||||
|
||||
ContinuationPromptTag.prototype.toDomNode = function(params) {
|
||||
var dom = document.createElement("span");
|
||||
dom.appendChild(document.createTextNode('#<continuation-prompt-tag:' + this.name + '>'));
|
||||
return dom;
|
||||
};
|
||||
|
||||
ContinuationPromptTag.prototype.toWrittenString = function(cache) {
|
||||
return '#<continuation-prompt-tag' + this.name + '>';
|
||||
};
|
||||
|
||||
ContinuationPromptTag.prototype.toDisplayedString = function(cache) {
|
||||
return '#<continuation-prompt-tag' + this.name + '>';
|
||||
};
|
||||
|
||||
|
||||
|
||||
var isContinuationPromptTag = baselib.makeClassPredicate(ContinuationPromptTag);
|
||||
|
||||
var DEFAULT_CONTINUATION_PROMPT_TAG =
|
||||
new ContinuationPromptTag("default-continuation-prompt-tag");
|
||||
new ContinuationPromptTag("default");
|
||||
|
||||
|
||||
exports.ContinuationMarkSet = ContinuationMarkSet;
|
||||
|
|
Loading…
Reference in New Issue
Block a user