diff options
| -rw-r--r-- | REFLECTION | 218 | 
1 files changed, 160 insertions, 58 deletions
| @@ -1,4 +1,4 @@ -Extension [ <persistent> extension #119 parle version 0.8.2 ] { +Extension [ <persistent> extension #120 parle version 0.8.2 ] {    - Constants [1] {      Constant [ bool Parle\INTERNAL_UTF32 ] {  } @@ -17,9 +17,9 @@ Extension [ <persistent> extension #119 parle version 0.8.2 ] {        }        - Properties [3] { -        Property [ <default> public $id ] -        Property [ <default> public $position ] -        Property [ <default> public $token ] +        Property [ public $id = 0 ] +        Property [ public $position = 0 ] +        Property [ public $token = NULL ]        }        - Methods [0] { @@ -41,8 +41,8 @@ Extension [ <persistent> extension #119 parle version 0.8.2 ] {        }        - Properties [2] { -        Property [ <default> public $id ] -        Property [ <default> public $value ] +        Property [ public $id = 65535 ] +        Property [ public $value = NULL ]        }        - Methods [0] { @@ -66,11 +66,11 @@ Extension [ <persistent> extension #119 parle version 0.8.2 ] {        }        - Properties [5] { -        Property [ <default> public $bol ] -        Property [ <default> public $flags ] -        Property [ <default> public $state ] -        Property [ <default> public $marker ] -        Property [ <default> public $cursor ] +        Property [ public $bol = false ] +        Property [ public $flags = 0 ] +        Property [ public $state = 0 ] +        Property [ public $marker = -1 ] +        Property [ public $cursor = -1 ]        }        - Methods [9] { @@ -155,11 +155,11 @@ Extension [ <persistent> extension #119 parle version 0.8.2 ] {        }        - Properties [5] { -        Property [ <default> public $bol ] -        Property [ <default> public $flags ] -        Property [ <default> public $state ] -        Property [ <default> public $marker ] -        Property [ <default> public $cursor ] +        Property [ public $bol = false ] +        Property [ public $flags = 0 ] +        Property [ public $state = 0 ] +        Property [ public $marker = -1 ] +        Property [ public $cursor = -1 ]        }        - Methods [10] { @@ -255,8 +255,8 @@ Extension [ <persistent> extension #119 parle version 0.8.2 ] {        }        - Properties [2] { -        Property [ <default> public $action ] -        Property [ <default> public $reduceId ] +        Property [ public $action = 0 ] +        Property [ public $reduceId = 0 ]        }        - Methods [16] { @@ -313,8 +313,8 @@ Extension [ <persistent> extension #119 parle version 0.8.2 ] {          Method [ <internal:parle> public method validate ] {            - Parameters [2] { -            Parameter #0 [ <optional> string $data ] -            Parameter #1 [ <optional> Parle\Lexer $lexer ] +            Parameter #0 [ <optional> string $data = <default> ] +            Parameter #1 [ <optional> Parle\Lexer $lexer = <default> ]            }            - Return [ bool ]          } @@ -330,7 +330,7 @@ Extension [ <persistent> extension #119 parle version 0.8.2 ] {          Method [ <internal:parle> public method sigil ] {            - Parameters [1] { -            Parameter #0 [ <optional> int $idx ] +            Parameter #0 [ <optional> int $idx = <default> ]            }            - Return [ string ]          } @@ -359,7 +359,7 @@ Extension [ <persistent> extension #119 parle version 0.8.2 ] {            - Parameters [0] {            } -          - Return [ string or NULL ] +          - Return [ ?string ]          }          Method [ <internal:parle> public method errorInfo ] { @@ -398,8 +398,8 @@ Extension [ <persistent> extension #119 parle version 0.8.2 ] {        }        - Properties [2] { -        Property [ <default> public $action ] -        Property [ <default> public $reduceId ] +        Property [ public $action = 0 ] +        Property [ public $reduceId = 0 ]        }        - Methods [16] { @@ -456,8 +456,8 @@ Extension [ <persistent> extension #119 parle version 0.8.2 ] {          Method [ <internal:parle> public method validate ] {            - Parameters [2] { -            Parameter #0 [ <optional> string $data ] -            Parameter #1 [ <optional> Parle\RLexer $lexer ] +            Parameter #0 [ <optional> string $data = <default> ] +            Parameter #1 [ <optional> Parle\RLexer $lexer = <default> ]            }            - Return [ bool ]          } @@ -473,7 +473,7 @@ Extension [ <persistent> extension #119 parle version 0.8.2 ] {          Method [ <internal:parle> public method sigil ] {            - Parameters [1] { -            Parameter #0 [ <optional> int $idx ] +            Parameter #0 [ <optional> int $idx = <default> ]            }            - Return [ string ]          } @@ -502,7 +502,7 @@ Extension [ <persistent> extension #119 parle version 0.8.2 ] {            - Parameters [0] {            } -          - Return [ string or NULL ] +          - Return [ ?string ]          }          Method [ <internal:parle> public method errorInfo ] { @@ -533,9 +533,9 @@ Extension [ <persistent> extension #119 parle version 0.8.2 ] {        }        - Properties [3] { -        Property [ <default> public $empty ] -        Property [ <default> public $size ] -        Property [ <default> public $top ] +        Property [ public $empty = false ] +        Property [ public $size = 0 ] +        Property [ public $top = 0 ]        }        - Methods [2] { @@ -554,7 +554,7 @@ Extension [ <persistent> extension #119 parle version 0.8.2 ] {        }      } -    Class [ <internal:parle> class Parle\LexerException extends Exception implements Throwable ] { +    Class [ <internal:parle> class Parle\LexerException extends Exception implements Throwable, Stringable ] {        - Constants [0] {        } @@ -566,52 +566,86 @@ Extension [ <persistent> extension #119 parle version 0.8.2 ] {        }        - Properties [4] { -        Property [ <default> protected $message ] -        Property [ <default> protected $code ] -        Property [ <default> protected $file ] -        Property [ <default> protected $line ] +        Property [ protected $message = '' ] +        Property [ protected $code = 0 ] +        Property [ protected $file = NULL ] +        Property [ protected $line = NULL ]        }        - Methods [10] {          Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {            - Parameters [3] { -            Parameter #0 [ <optional> $message ] -            Parameter #1 [ <optional> $code ] -            Parameter #2 [ <optional> $previous ] +            Parameter #0 [ <optional> string $message = "" ] +            Parameter #1 [ <optional> int $code = 0 ] +            Parameter #2 [ <optional> ?Throwable $previous = null ]            }          }          Method [ <internal:Core, inherits Exception> public method __wakeup ] { + +          - Parameters [0] { +          }          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] { + +          - Parameters [0] { +          } +          - Return [ string ]          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] { + +          - Parameters [0] { +          }          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] { + +          - Parameters [0] { +          } +          - Return [ string ]          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] { + +          - Parameters [0] { +          } +          - Return [ int ]          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] { + +          - Parameters [0] { +          } +          - Return [ array ]          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] { + +          - Parameters [0] { +          } +          - Return [ ?Throwable ]          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] { + +          - Parameters [0] { +          } +          - Return [ string ]          } -        Method [ <internal:Core, inherits Exception, prototype Throwable> public method __toString ] { +        Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] { + +          - Parameters [0] { +          } +          - Return [ string ]          }        }      } -    Class [ <internal:parle> class Parle\ParserException extends Exception implements Throwable ] { +    Class [ <internal:parle> class Parle\ParserException extends Exception implements Throwable, Stringable ] {        - Constants [0] {        } @@ -623,52 +657,86 @@ Extension [ <persistent> extension #119 parle version 0.8.2 ] {        }        - Properties [4] { -        Property [ <default> protected $message ] -        Property [ <default> protected $code ] -        Property [ <default> protected $file ] -        Property [ <default> protected $line ] +        Property [ protected $message = '' ] +        Property [ protected $code = 0 ] +        Property [ protected $file = NULL ] +        Property [ protected $line = NULL ]        }        - Methods [10] {          Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {            - Parameters [3] { -            Parameter #0 [ <optional> $message ] -            Parameter #1 [ <optional> $code ] -            Parameter #2 [ <optional> $previous ] +            Parameter #0 [ <optional> string $message = "" ] +            Parameter #1 [ <optional> int $code = 0 ] +            Parameter #2 [ <optional> ?Throwable $previous = null ]            }          }          Method [ <internal:Core, inherits Exception> public method __wakeup ] { + +          - Parameters [0] { +          }          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] { + +          - Parameters [0] { +          } +          - Return [ string ]          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] { + +          - Parameters [0] { +          }          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] { + +          - Parameters [0] { +          } +          - Return [ string ]          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] { + +          - Parameters [0] { +          } +          - Return [ int ]          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] { + +          - Parameters [0] { +          } +          - Return [ array ]          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] { + +          - Parameters [0] { +          } +          - Return [ ?Throwable ]          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] { + +          - Parameters [0] { +          } +          - Return [ string ]          } -        Method [ <internal:Core, inherits Exception, prototype Throwable> public method __toString ] { +        Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] { + +          - Parameters [0] { +          } +          - Return [ string ]          }        }      } -    Class [ <internal:parle> class Parle\StackException extends Exception implements Throwable ] { +    Class [ <internal:parle> class Parle\StackException extends Exception implements Throwable, Stringable ] {        - Constants [0] {        } @@ -680,47 +748,81 @@ Extension [ <persistent> extension #119 parle version 0.8.2 ] {        }        - Properties [4] { -        Property [ <default> protected $message ] -        Property [ <default> protected $code ] -        Property [ <default> protected $file ] -        Property [ <default> protected $line ] +        Property [ protected $message = '' ] +        Property [ protected $code = 0 ] +        Property [ protected $file = NULL ] +        Property [ protected $line = NULL ]        }        - Methods [10] {          Method [ <internal:Core, inherits Exception, ctor> public method __construct ] {            - Parameters [3] { -            Parameter #0 [ <optional> $message ] -            Parameter #1 [ <optional> $code ] -            Parameter #2 [ <optional> $previous ] +            Parameter #0 [ <optional> string $message = "" ] +            Parameter #1 [ <optional> int $code = 0 ] +            Parameter #2 [ <optional> ?Throwable $previous = null ]            }          }          Method [ <internal:Core, inherits Exception> public method __wakeup ] { + +          - Parameters [0] { +          }          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getMessage ] { + +          - Parameters [0] { +          } +          - Return [ string ]          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getCode ] { + +          - Parameters [0] { +          }          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getFile ] { + +          - Parameters [0] { +          } +          - Return [ string ]          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getLine ] { + +          - Parameters [0] { +          } +          - Return [ int ]          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTrace ] { + +          - Parameters [0] { +          } +          - Return [ array ]          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getPrevious ] { + +          - Parameters [0] { +          } +          - Return [ ?Throwable ]          }          Method [ <internal:Core, inherits Exception, prototype Throwable> final public method getTraceAsString ] { + +          - Parameters [0] { +          } +          - Return [ string ]          } -        Method [ <internal:Core, inherits Exception, prototype Throwable> public method __toString ] { +        Method [ <internal:Core, inherits Exception, prototype Stringable> public method __toString ] { + +          - Parameters [0] { +          } +          - Return [ string ]          }        }      } | 
