mirror of
https://github.com/Ekokumppanit/ystavakylaecard.git
synced 2026-02-11 01:45:57 +00:00
http://getsparks.org/packages/assets/versions/HEAD/show Creates our minified and combined .js and .css files
27 lines
432 B
PHP
Executable File
27 lines
432 B
PHP
Executable File
<?php
|
|
|
|
namespace CoffeeScript;
|
|
|
|
class yy_Extends extends yy_Base
|
|
{
|
|
public $children = array('child', 'parent');
|
|
|
|
function constructor($child, $parent)
|
|
{
|
|
$this->child = $child;
|
|
$this->parent = $parent;
|
|
|
|
return $this;
|
|
}
|
|
|
|
function compile($options)
|
|
{
|
|
$tmp = yy('Call', yy('Value', yy('Literal', utility('extends'))),
|
|
array($this->child, $this->parent));
|
|
|
|
return $tmp->compile($options);
|
|
}
|
|
}
|
|
|
|
?>
|