9 class Less_Tree_Javascript
extends Less_Tree
{
11 public $type = 'Javascript';
17 * @param boolean $index
18 * @param boolean $escaped
20 public function __construct($string, $index, $escaped){
21 $this->escaped
= $escaped;
22 $this->expression
= $string;
23 $this->index
= $index;
26 public function compile(){
27 return new Less_Tree_Anonymous('/* Sorry, can not do JavaScript evaluation in PHP... :( */');