Beispiel #1
0
 /*
  * Checks if the method matches the arguments in the Lua stack, getting
  * the arguments if it does.
  */
 internal bool MatchParameters(LuaState luaState, MethodBase method, MethodCache methodCache, int skipParam)
 {
     return(metaFunctions.MatchParameters(luaState, method, methodCache, skipParam));
 }
 /*
  * Checks if the method matches the arguments in the Lua stack, getting
  * the arguments if it does.
  */
 internal bool MatchParameters(LuaState luaState, MethodBase method, ref MethodCache methodCache)
 {
     return(metaFunctions.MatchParameters(luaState, method, ref methodCache));
 }