Files
ystavakylaecard/sparks/assets/1.5.1/libraries/coffeescript/yy/Throw.php
Ismo Vuorinen 7e73994e40 Sparks: Assets, 1.5.1
http://getsparks.org/packages/assets/versions/HEAD/show

Creates our minified and combined .js and .css files
2013-07-11 07:46:29 +03:00

38 lines
490 B
PHP
Executable File

<?php
namespace CoffeeScript;
class yy_Throw extends yy_Base
{
public $children = array('expression');
function constructor($expression)
{
$this->expression = $expression;
return $this;
}
function compile_node($options = array())
{
return $this->tab.'throw '.$this->expression->compile($options).';';
}
function is_statement()
{
return TRUE;
}
function jumps()
{
return FALSE;
}
function make_return()
{
return $this;
}
}
?>