diff --git a/whalesong/js-assembler/runtime-src/baselib-contmarks.js b/whalesong/js-assembler/runtime-src/baselib-contmarks.js index 23c1f5f..7ea8996 100644 --- a/whalesong/js-assembler/runtime-src/baselib-contmarks.js +++ b/whalesong/js-assembler/runtime-src/baselib-contmarks.js @@ -88,11 +88,26 @@ }; + ContinuationPromptTag.prototype.toDomNode = function(params) { + var dom = document.createElement("span"); + dom.appendChild(document.createTextNode('#')); + return dom; + }; + + ContinuationPromptTag.prototype.toWrittenString = function(cache) { + return '#'; + }; + + ContinuationPromptTag.prototype.toDisplayedString = function(cache) { + return '#'; + }; + + var isContinuationPromptTag = baselib.makeClassPredicate(ContinuationPromptTag); var DEFAULT_CONTINUATION_PROMPT_TAG = - new ContinuationPromptTag("default-continuation-prompt-tag"); + new ContinuationPromptTag("default"); exports.ContinuationMarkSet = ContinuationMarkSet; @@ -101,4 +116,4 @@ exports.isContinuationPromptTag = isContinuationPromptTag; exports.DEFAULT_CONTINUATION_PROMPT_TAG = DEFAULT_CONTINUATION_PROMPT_TAG; -}(this.plt.baselib)); \ No newline at end of file +}(this.plt.baselib));