Fix a few concurrency warnings.

This commit is contained in:
Brent Simmons
2024-05-03 12:05:53 -07:00
parent 81cede769a
commit 19fd3d96ab
6 changed files with 10 additions and 9 deletions

View File

@@ -9,7 +9,8 @@
import Foundation
protocol ScriptingObject {
var objectSpecifier: NSScriptObjectSpecifier? { get }
@MainActor var objectSpecifier: NSScriptObjectSpecifier? { get }
@MainActor var scriptingKey: String { get }
}