summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-01-09 18:45:58 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-01-09 18:45:58 -0800
commit7bfb5dd6915fd455e93086fc2b546802bdd77027 (patch)
tree90149b4bebb655d7bcd558e396e1ab8bcca05085 /js
parent05c60132f4ba80f5d62d99e7d0be27715ade06e5 (diff)
JS: sourceloc -> sourcepos for confirmity with cmark.
Diffstat (limited to 'js')
-rw-r--r--js/lib/blocks.js4
-rw-r--r--js/lib/node.js6
2 files changed, 5 insertions, 5 deletions
diff --git a/js/lib/blocks.js b/js/lib/blocks.js
index 63eca24..a83bccf 100644
--- a/js/lib/blocks.js
+++ b/js/lib/blocks.js
@@ -482,7 +482,7 @@ var incorporateLine = function(ln, line_number) {
container.t === 'FencedCode' ||
(container.t === 'ListItem' &&
!container.firstChild &&
- container.sourceloc[0][0] === line_number));
+ container.sourcepos[0][0] === line_number));
var cont = container;
while (cont.parent) {
@@ -548,7 +548,7 @@ var finalize = function(block, line_number) {
return 0;
}
block.open = false;
- block.sourceloc[1] = [line_number, this.lastLineLength + 1];
+ block.sourcepos[1] = [line_number, this.lastLineLength + 1];
switch (block.t) {
case 'Paragraph':
diff --git a/js/lib/node.js b/js/lib/node.js
index dfc77ab..102003c 100644
--- a/js/lib/node.js
+++ b/js/lib/node.js
@@ -60,14 +60,14 @@ NodeWalker.prototype.next = function(){
return {entering: entering, node: cur};
};
-function Node(nodeType, sourceloc) {
+function Node(nodeType, sourcepos) {
this.t = nodeType;
this.parent = null;
this.firstChild = null;
this.lastChild = null;
this.prev = null;
this.next = null;
- this.sourceloc = sourceloc;
+ this.sourcepos = sourcepos;
this.last_line_blank = false;
this.open = true;
this.strings = undefined;
@@ -167,7 +167,7 @@ Node.prototype.toAST = function() {
var cur;
var result = { t: this.t };
- var propsToShow = ['t', 'c', 'list_data', 'sourceloc', 'info', 'level'];
+ var propsToShow = ['t', 'c', 'list_data', 'sourcepos', 'info', 'level'];
for (var i = 0; i < propsToShow.length; i++) {
var prop = propsToShow[i];