From 93dc27cbc5a8617d1af233e960e57cd4248c230e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 12 Apr 2016 08:10:51 +0200 Subject: php-pecl-lua: 2.0.1 (php 7, beta) --- REFLECTION-PHP7 | 188 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 188 insertions(+) create mode 100644 REFLECTION-PHP7 (limited to 'REFLECTION-PHP7') diff --git a/REFLECTION-PHP7 b/REFLECTION-PHP7 new file mode 100644 index 0000000..6dc713a --- /dev/null +++ b/REFLECTION-PHP7 @@ -0,0 +1,188 @@ +Extension [ extension #65 lua version 2.0.1 ] { + + - Constants [8] { + 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_ERRGCMM ] { 5 } + Constant [ integer LUA_ERRERR ] { 6 } + Constant [ integer LUA_ERRFILE ] { 7 } + } + + - Classes [3] { + Class [ final class Lua ] { + + - Constants [1] { + Constant [ string LUA_VERSION ] { Lua 5.3.2 } + } + + - 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 [ final 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 implements Throwable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message ] + Property [ protected $code ] + Property [ protected $file ] + Property [ protected $line ] + } + + - Methods [10] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ $message ] + Parameter #1 [ $code ] + Parameter #2 [ $previous ] + } + } + + Method [ public method __wakeup ] { + } + + 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