| 948 | } |
| 949 | |
| 950 | bool isInvalidMethodName(const String &name) |
| 951 | { |
| 952 | if (name.isEmpty() || name == COMBO_NONE_ITEM) |
| 953 | return (true); |
| 954 | |
| 955 | return (false); |
| 956 | } |
| 957 | |
| 958 | const MemoryBlock luaArrayTomemoryBlock(const CtrlrLuaObjectWrapper &luaArray) |
| 959 | { |
no test coverage detected