Overview

Namespaces

  • None
  • Peg
    • Cli
      • Commands
    • Config
    • Custom
      • Command
        • Action
          • Generate
          • Parse
      • CommandLine
      • Config
      • Localization
      • Utilities
    • Lib
      • Definitions
        • Element
      • Generator
      • Lexers
      • Plugins
      • Signals
        • Data
          • Definitions
          • Lexers
        • Type
  • PHP

Classes

  • Exporter
  • Importer
  • StandardType
  • Symbols
  • Type
  • Overview
  • Namespace
  • Class
  • Tree
  • Todo
 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: }
PEG Api API documentation generated by ApiGen 2.8.0