Update composer dependencies

This commit is contained in:
Kijin Sung 2016-03-22 11:26:00 +09:00
parent 06f5151f8f
commit 365d7cdba9
58 changed files with 1245 additions and 5987 deletions

View file

@ -12,7 +12,7 @@
namespace Leafo\ScssPhp;
/**
* SCSS node
* Base node
*
* @author Anthon Pang <anthon.pang@gmail.com>
*/
@ -26,10 +26,15 @@ abstract class Node
/**
* @var integer
*/
public $sourcePosition;
public $sourceIndex;
/**
* @var integer
*/
public $sourceIndex;
public $sourceLine;
/**
* @var integer
*/
public $sourceColumn;
}