Sha256: 806fbc7daed941a4fd744750ee44371145cdcb9dd8f95d3950a18f21e6dcc5dd
Contents?: true
Size: 516 Bytes
Versions: 10
Compression:
Stored size: 516 Bytes
Contents
<?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($options = NULL) { return TRUE; } function jumps() { return FALSE; } function make_return($res = NULL) { return $this; } } ?>
Version data entries
10 entries across 10 versions & 1 rubygems