module lang::php::types::Types
rascal-0.40.17
php-analysis-0.2.4
Usage
import lang::php::types::Types;
Source code
http://github.com/cwi-swat/php-analysis/blob/main/src/main/rascal/lang/php/types/Types.rsc
data Type
data Type
= Boolean()
| Integer()
| Float()
| String()
| Array(Type from, Type to)
| Class(str className)
| Interface(str interfaceName)
;