You are here

public function SassNode::getLine in Sassy 7.3

Same name and namespace in other branches
  1. 7 phamlp/sass/tree/SassNode.php \SassNode::getLine()

Returns the line number for this node

Return value

string the line number for this node

File

phpsass/tree/SassNode.php, line 203

Class

SassNode
SassNode class. Base class for all Sass nodes. @package PHamlP @subpackage Sass.tree

Code

public function getLine() {
  return $this->token->line;
}