mirror of
https://github.com/Cysharp/UniTask.git
synced 2026-05-15 19:40:09 +00:00
d
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user