StringAst.php

<?php

namespace Tlf\Lexer;

class StringAst extends Ast {

    public function getTree($sourceTree = null){
        return $this->get('value');
    }

}