2011-06-03 22:02:02 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property string $remaining Remaining text after halt compiler statement.
|
|
|
|
*/
|
2011-06-05 18:40:04 +02:00
|
|
|
class PHPParser_Node_Stmt_HaltCompiler extends PHPParser_Node_Stmt
|
2011-06-03 22:02:02 +02:00
|
|
|
{
|
2011-09-22 20:27:12 +02:00
|
|
|
/**
|
|
|
|
* Constructs a __halt_compiler node.
|
|
|
|
*
|
2012-04-29 23:32:09 +02:00
|
|
|
* @param string $remaining Remaining text after halt compiler statement.
|
|
|
|
* @param array $attributes Additional attributes
|
2011-09-22 20:27:12 +02:00
|
|
|
*/
|
2012-04-29 23:32:09 +02:00
|
|
|
public function __construct($remaining, array $attributes = array()) {
|
2011-09-22 20:27:12 +02:00
|
|
|
parent::__construct(
|
|
|
|
array(
|
|
|
|
'remaining' => $remaining,
|
|
|
|
),
|
2012-04-29 23:32:09 +02:00
|
|
|
$attributes
|
2011-09-22 20:27:12 +02:00
|
|
|
);
|
|
|
|
}
|
2011-06-03 22:02:02 +02:00
|
|
|
}
|