mirror of
https://github.com/Ekokumppanit/ystavakylaecard.git
synced 2026-01-26 11:14:04 +00:00
http://getsparks.org/packages/assets/versions/HEAD/show Creates our minified and combined .js and .css files
32 lines
489 B
PHP
Executable File
32 lines
489 B
PHP
Executable File
<?php
|
|
|
|
namespace CoffeeScript;
|
|
|
|
class yy_Access extends yy_Base
|
|
{
|
|
public $children = array('name');
|
|
|
|
function constructor($name, $tag = NULL)
|
|
{
|
|
$this->name = $name;
|
|
$this->name->as_key = TRUE;
|
|
|
|
$this->soak = $tag === 'soak';
|
|
|
|
return $this;
|
|
}
|
|
|
|
function compile($options, $level = NULL)
|
|
{
|
|
$name = $this->name->compile($options);
|
|
return preg_match(IDENTIFIER, $name) ? ".{$name}" : "[{$name}]";
|
|
}
|
|
|
|
function is_complex()
|
|
{
|
|
return FALSE;
|
|
}
|
|
}
|
|
|
|
?>
|