File modules/dsl/ast/DslNull.class.php

Last commit: Sat May 28 18:00:13 2022 +0200	Jan Dankert	New: DSL with a much better syntax parsing and support for assignments, conditions, ...
1 <?php 2 3 namespace dsl\ast; 4 5 use dsl\DslParserException; 6 use dsl\DslToken; 7 8 class DslNull implements DslStatement 9 { 10 public function execute( & $context) 11 { 12 return null; 13 } 14 15 16 public function parse($tokens) 17 { 18 // TODO: Implement parse() method. 19 } 20 }
Download modules/dsl/ast/DslNull.class.php
History Sat, 28 May 2022 18:00:13 +0200 Jan Dankert New: DSL with a much better syntax parsing and support for assignments, conditions, ...