You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
581 B
34 lines
581 B
<?php
|
|
|
|
/**
|
|
* DefaultFunc
|
|
*
|
|
* @package Less
|
|
* @subpackage tree
|
|
*/
|
|
class Less_Tree_DefaultFunc{
|
|
|
|
static $error_;
|
|
static $value_;
|
|
|
|
public static function compile(){
|
|
if( self::$error_ ){
|
|
throw new Exception(self::$error_);
|
|
}
|
|
if( self::$value_ !== null ){
|
|
return self::$value_ ? new Less_Tree_Keyword('true') : new Less_Tree_Keyword('false');
|
|
}
|
|
}
|
|
|
|
public static function value( $v ){
|
|
self::$value_ = $v;
|
|
}
|
|
|
|
public static function error( $e ){
|
|
self::$error_ = $e;
|
|
}
|
|
|
|
public static function reset(){
|
|
self::$value_ = self::$error_ = null;
|
|
}
|
|
}
|