1: <?php
2: /**
3: * @author Jefferson González
4: * @license MIT
5: * @link http://github.com/peg-org/peg-src Source code.
6: */
7:
8: namespace Peg\Lib\Definitions;
9:
10: /**
11: * The standard variable types.
12: */
13: class StandardType
14: {
15: const BOOLEAN = "boolean";
16: const INTEGER = "integer";
17: const REAL = "real";
18: const CHARACTER = "character";
19: const VOID = "void";
20: const OBJECT = "object";
21: const CLASS_ENUM = "class_enum";
22: const ENUM = "enum";
23: const UNKNOWN = "unknown";
24: }