for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Vlaswinkel\Lua\AST;
/**
* Class NilASTNode
*
* @author Koen Vlaswinkel <[email protected]>
* @package Vlaswinkel\Lua\AST
*/
class NilASTNode extends ASTNode {
const NAME = 'nil';
* @return string
public function getName() {
return self::NAME;
}