| 1 | <?php |
||
| 11 | class Lua { |
||
| 12 | public static $luaKeywords = [ |
||
| 13 | 'and', |
||
| 14 | 'break', |
||
| 15 | 'do', |
||
| 16 | 'else', |
||
| 17 | 'elseif', |
||
| 18 | 'end', |
||
| 19 | 'false', |
||
| 20 | 'for', |
||
| 21 | 'function', |
||
| 22 | 'if', |
||
| 23 | 'in', |
||
| 24 | 'local', |
||
| 25 | 'nil', |
||
| 26 | 'not', |
||
| 27 | 'or', |
||
| 28 | 'repeat', |
||
| 29 | 'return', |
||
| 30 | 'then', |
||
| 31 | 'true', |
||
| 32 | 'until', |
||
| 33 | 'while', |
||
| 34 | ]; |
||
| 35 | |||
| 36 | public static function serialize($data) { |
||
| 39 | |||
| 40 | public static function deserialize($data) { |
||
| 44 | } |