1 | <?php |
||
16 | abstract class LanguageConstruct extends Variable { |
||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | private $construct_name; |
||
21 | |||
22 | 47 | public function __construct($construct_name, $name = null) { |
|
23 | 47 | parent::__construct($name); |
|
24 | 47 | assert('is_string($construct_name)'); |
|
25 | 47 | $this->construct_name = $construct_name; |
|
26 | 47 | } |
|
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | 113 | public function construct_name() { |
|
34 | |||
35 | /** |
||
36 | * @inheritdoc |
||
37 | */ |
||
38 | 108 | public function meaning() { |
|
41 | |||
42 | /** |
||
43 | * @inheritdocs |
||
44 | */ |
||
45 | 5 | public function compile(PredicateFactory $f) { |
|
51 | } |
||
52 | |||
53 |