You are here

private function SassNode::getLine in Sassy 7

Same name and namespace in other branches
  1. 7.3 phpsass/tree/SassNode.php \SassNode::getLine()

* Returns the line number for this node *

Return value

string the line number for this node

File

phamlp/sass/tree/SassNode.php, line 200

Class

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

Code

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