split type onto multiple lines
This commit is contained in:
parent
de363bc271
commit
c35d6b6808
@ -345,7 +345,12 @@ type ClassFunctionPointer=fn(&mlua::Lua,mlua::MultiValue)->mlua::Result<mlua::Mu
|
|||||||
// TODO: use macros to define these with better organization
|
// TODO: use macros to define these with better organization
|
||||||
/// A double hash map of function pointers.
|
/// A double hash map of function pointers.
|
||||||
/// The class tree is walked by the Instance.__index metamethod to find available class methods.
|
/// The class tree is walked by the Instance.__index metamethod to find available class methods.
|
||||||
static CLASS_FUNCTION_DATABASE:phf::Map<&str,phf::Map<&str,ClassFunctionPointer>>=phf::phf_map!{
|
type CFD=phf::Map<&'static str,
|
||||||
|
phf::Map<&'static str,
|
||||||
|
ClassFunctionPointer
|
||||||
|
>
|
||||||
|
>;
|
||||||
|
static CLASS_FUNCTION_DATABASE:CFD=phf::phf_map!{
|
||||||
"DataModel"=>phf::phf_map!{
|
"DataModel"=>phf::phf_map!{
|
||||||
"GetService"=>cf!(|lua,_this,service:mlua::String|{
|
"GetService"=>cf!(|lua,_this,service:mlua::String|{
|
||||||
dom_mut(lua,|dom|{
|
dom_mut(lua,|dom|{
|
||||||
|
Loading…
Reference in New Issue
Block a user