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
38 lines
540 B
PHP
Executable File
38 lines
540 B
PHP
Executable File
<?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;
|
|
}
|
|
}
|
|
|
|
?>
|