-- channel.func_name(1,2,3):set("value")
-- value = channel.func_name(1,2,3):get()
--
--- channel["func_name(1|2|3)"]:set("value")
--- channel["func_name(1|2|3)"] = "value"
--- value = channel["func_name(1|2|3)"]:get()
+-- channel["func_name(1,2,3)"]:set("value")
+-- channel["func_name(1,2,3)"] = "value"
+-- value = channel["func_name(1,2,3)"]:get()
--
-- Note the use of the ':' operator to access the get() and set()
-- methods.
* seen in extensions.lua.
*
* \code
- * channel.variable:set()
+ * channel.variable:set("value")
* \endcode
*/
static int lua_set_variable_value(lua_State *L)