master
parent
6c1b590fd8
commit
4e9d268d1c
|
@ -137,29 +137,19 @@ namespace Cysharp.Threading.Tasks.CompilerServices
|
|||
}
|
||||
|
||||
#if DEBUG || !UNITY_2018_3_OR_NEWER
|
||||
|
||||
object id;
|
||||
|
||||
// 9. For Debugger Attach
|
||||
public object ObjectIdForDebugger
|
||||
// Important for IDE debugger.
|
||||
object debuggingId;
|
||||
private object ObjectIdForDebugger
|
||||
{
|
||||
get
|
||||
{
|
||||
if (id == null)
|
||||
if (debuggingId == null)
|
||||
{
|
||||
id = new object();
|
||||
debuggingId = new object();
|
||||
}
|
||||
return id;
|
||||
/*
|
||||
if (promise == null)
|
||||
{
|
||||
promise = AutoResetUniTaskCompletionSource.Create();
|
||||
}
|
||||
return promise;
|
||||
*/
|
||||
return debuggingId;
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -294,29 +284,20 @@ namespace Cysharp.Threading.Tasks.CompilerServices
|
|||
}
|
||||
|
||||
#if DEBUG || !UNITY_2018_3_OR_NEWER
|
||||
|
||||
object id;
|
||||
|
||||
// 9. For Debugger Attach
|
||||
public object ObjectIdForDebugger
|
||||
// Important for IDE debugger.
|
||||
object debuggingId;
|
||||
private object ObjectIdForDebugger
|
||||
{
|
||||
get
|
||||
{
|
||||
if (id == null)
|
||||
if (debuggingId == null)
|
||||
{
|
||||
id = new object();
|
||||
debuggingId = new object();
|
||||
}
|
||||
return id;
|
||||
/*
|
||||
if (promise == null)
|
||||
{
|
||||
promise = AutoResetUniTaskCompletionSource<T>.Create();
|
||||
}
|
||||
return promise;
|
||||
*/
|
||||
return debuggingId;
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
}
|
||||
}
|
|
@ -102,22 +102,19 @@ namespace Cysharp.Threading.Tasks.CompilerServices
|
|||
}
|
||||
|
||||
#if DEBUG || !UNITY_2018_3_OR_NEWER
|
||||
|
||||
object id;
|
||||
|
||||
// 9. For Debugger Attach
|
||||
public object ObjectIdForDebugger
|
||||
// Important for IDE debugger.
|
||||
object debuggingId;
|
||||
private object ObjectIdForDebugger
|
||||
{
|
||||
get
|
||||
{
|
||||
if (id == null)
|
||||
if (debuggingId == null)
|
||||
{
|
||||
id = new object();
|
||||
debuggingId = new object();
|
||||
}
|
||||
return id;
|
||||
return debuggingId;
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue