Sparks: Assets, 1.5.1

http://getsparks.org/packages/assets/versions/HEAD/show

Creates our minified and combined .js and .css files
This commit is contained in:
Ismo Vuorinen
2013-07-11 07:46:29 +03:00
parent fabd8585ab
commit 7e73994e40
53 changed files with 20358 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
<?php
namespace CoffeeScript;
class yy_Comment extends yy_Base
{
function constructor($comment)
{
$this->comment = $comment;
return $this;
}
function compile_node($options, $level = NULL)
{
$code = '/*'.multident($this->comment, $this->tab)."\n{$this->tab}*/\n";
if ($level === LEVEL_TOP || $options['level'] === LEVEL_TOP)
{
$code = $options['indent'].$code;
}
return $code;
}
function is_statement()
{
return TRUE;
}
function make_return()
{
return $this;
}
}
?>