| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 1 31 31 31 1 | /*!
* Copyright (C) 2017 Glayzzle (BSD3 License)
* @authors https://github.com/glayzzle/php-parser/graphs/contributors
* @url http://glayzzle.com
*/
/**
* Defines the location of the node (with it's source contents as string)
* @constructor Location
* @property {String|null} source
* @property {Position} start
* @property {Position} end
*/
var Location = function(source, start, end) {
this.source = source;
this.start = start;
this.end = end;
};
module.exports = Location;
|