[ Index ] |
PHP Cross Reference of moodle-2.8 |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 * RulesetCall 5 * 6 * @package Less 7 * @subpackage tree 8 */ 9 class Less_Tree_RulesetCall extends Less_Tree{ 10 11 public $variable; 12 public $type = "RulesetCall"; 13 14 function __construct($variable){ 15 $this->variable = $variable; 16 } 17 18 function accept($visitor) {} 19 20 function compile( $env ){ 21 $variable = new Less_Tree_Variable($this->variable); 22 $detachedRuleset = $variable->compile($env); 23 return $detachedRuleset->callEval($env); 24 } 25 } 26
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 20:29:05 2014 | Cross-referenced by PHPXref 0.7.1 |