1. Go to this page and download the library: Download xp-framework/ast library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
namespace lang\ast\syntax\php;
use lang\ast\Code;
use lang\ast\nodes\{Method, Signature};
use lang\ast\syntax\Extension;
use codegen\Getters;
class CreateGetters implements Extension {
public function setup($language, $emitter) {
$emitter->transform('class', function($codegen, $class) {
if ($class->annotation(Getters::class)) {
foreach ($class->properties() as $property) {
$class->declare(new Method(
['public'],
$property->name,
new Signature([], $property->type),
[new Code('return $this->'.$property->name)]
));
}
}
return $class;
});
}
}
use codegen\Getters;
#[Getters]
class Person {
private int $id;
private string $name;
public function __construct(int $id, string $name) {
$this->id= $id;
$this->name= $name;
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.