You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
320 B
15 lines
320 B
'use strict';
|
|
|
|
var define = require('define-property');
|
|
|
|
/**
|
|
* Store position for a node
|
|
*/
|
|
|
|
module.exports = function Position(start, parser) {
|
|
this.start = start;
|
|
this.end = { line: parser.line, column: parser.column };
|
|
define(this, 'content', parser.orig);
|
|
define(this, 'source', parser.options.source);
|
|
};
|