From 339935823e87a9aa8e991f84d7d754c83f77cf48 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Sat, 17 May 2014 17:19:42 +0200 Subject: php-pecl-*: add Reflection file --- REFLECTION | 184 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 184 insertions(+) create mode 100644 REFLECTION diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..22964d9 --- /dev/null +++ b/REFLECTION @@ -0,0 +1,184 @@ +Extension [ extension #101 lua version 1.1.0 ] { + + - Constants [7] { + Constant [ integer LUA_OK ] { 0 } + Constant [ integer LUA_YIELD ] { 1 } + Constant [ integer LUA_ERRRUN ] { 2 } + Constant [ integer LUA_ERRSYNTAX ] { 3 } + Constant [ integer LUA_ERRMEM ] { 4 } + Constant [ integer LUA_ERRERR ] { 5 } + Constant [ integer LUA_ERRFILE ] { 6 } + } + + - Classes [3] { + Class [ class Lua ] { + + - Constants [1] { + Constant [ string LUA_VERSION ] { Lua 5.1.4 } + } + + - Static properties [1] { + Property [ private static $_callbacks ] + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [8] { + Method [ public method __construct ] { + } + + Method [ public method eval ] { + + - Parameters [1] { + Parameter #0 [ $statements ] + } + } + + Method [ public method include ] { + + - Parameters [1] { + Parameter #0 [ $file ] + } + } + + Method [ public method call ] { + + - Parameters [2] { + Parameter #0 [ $method ] + Parameter #1 [ $args ] + } + } + + Method [ public method assign ] { + + - Parameters [2] { + Parameter #0 [ $name ] + Parameter #1 [ $value ] + } + } + + Method [ public method getVersion ] { + } + + Method [ public method registerCallback ] { + + - Parameters [2] { + Parameter #0 [ $name ] + Parameter #1 [ $function ] + } + } + + Method [ public method __call ] { + + - Parameters [2] { + Parameter #0 [ $method ] + Parameter #1 [ $args ] + } + } + } + } + + Class [ class LuaClosure ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ private $_closure ] + Property [ private $_lua_object ] + } + + - Methods [5] { + Method [ private method __construct ] { + } + + Method [ public method __destruct ] { + } + + Method [ private method __clone ] { + } + + Method [ public method invoke ] { + + - Parameters [2] { + Parameter #0 [ $arg ] + Parameter #1 [ $... ] + } + } + + Method [ public method __invoke ] { + + - Parameters [2] { + Parameter #0 [ $arg ] + Parameter #1 [ $... ] + } + } + } + } + + Class [ class LuaException extends Exception ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [9] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ final public method getMessage ] { + } + + Method [ final public method getCode ] { + } + + Method [ final public method getFile ] { + } + + Method [ final public method getLine ] { + } + + Method [ final public method getTrace ] { + } + + Method [ final public method getPrevious ] { + } + + Method [ final public method getTraceAsString ] { + } + + Method [ public method __toString ] { + } + } + } + } +} + -- cgit