mirror of
https://github.com/vczh-libraries/Release.git
synced 2026-09-21 14:13:55 +08:00
Update release
This commit is contained in:
+12
-2
@@ -20562,8 +20562,8 @@ WfMethodBase
|
||||
}
|
||||
|
||||
|
||||
WfMethodBase::WfMethodBase()
|
||||
:MethodInfoImpl(nullptr, nullptr, true)
|
||||
WfMethodBase::WfMethodBase(bool isStatic)
|
||||
:MethodInfoImpl(nullptr, nullptr, isStatic)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -20598,6 +20598,11 @@ WfStaticMethod
|
||||
return Value::From(lambda);
|
||||
}
|
||||
|
||||
WfStaticMethod::WfStaticMethod()
|
||||
:WfMethodBase(true)
|
||||
{
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
WfInterfaceMethod
|
||||
***********************************************************************/
|
||||
@@ -20612,6 +20617,11 @@ WfInterfaceMethod
|
||||
throw 0;
|
||||
}
|
||||
|
||||
WfInterfaceMethod::WfInterfaceMethod()
|
||||
:WfMethodBase(false)
|
||||
{
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
WfEvent
|
||||
***********************************************************************/
|
||||
|
||||
Reference in New Issue
Block a user