Skip to content

Commit 5860abd

Browse files
authored
fix: async/await methods should be available for watchOS 8+ (#265)
* Async/await methods should be available for watchOS8+ * Updare changelog
1 parent d6be35b commit 5860abd

37 files changed

+52
-46
lines changed

.codecov.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ coverage:
66
status:
77
patch:
88
default:
9-
target: 0
9+
target: auto
1010
changes: false
1111
project:
1212
default:

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22

33
### main
44

5-
[Full Changelog](https://github.com/parse-community/Parse-Swift/compare/2.0.2...main)
5+
[Full Changelog](https://github.com/parse-community/Parse-Swift/compare/2.0.3...main)
66
* _Contributing to this repo? Add info about your change here to be included in the next release_
77

8+
### 2.0.3
9+
[Full Changelog](https://github.com/parse-community/Parse-Swift/compare/2.0.2...2.0.3)
10+
11+
__Fixes__
12+
- Async/await methods should be available for watchOS 8+ ([#265](https://github.com/parse-community/Parse-Swift/pull/265)), thanks to [Corey Baker](https://github.com/cbaker6).
13+
814
### 2.0.2
915
[Full Changelog](https://github.com/parse-community/Parse-Swift/compare/2.0.1...2.0.2)
1016

Sources/ParseSwift/Authentication/3rd Party/ParseApple/ParseApple+async.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#if swift(>=5.5) && canImport(_Concurrency)
1010
import Foundation
1111

12-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
12+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1313
public extension ParseApple {
1414
// MARK: Login - Async/Await
1515

@@ -49,7 +49,7 @@ public extension ParseApple {
4949
}
5050
}
5151

52-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
52+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
5353
public extension ParseApple {
5454
// MARK: Link - Async/Await
5555

Sources/ParseSwift/Authentication/3rd Party/ParseFacebook/ParseFacebook+async.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#if swift(>=5.5) && canImport(_Concurrency)
1010
import Foundation
1111

12-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
12+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1313
public extension ParseFacebook {
1414
// MARK: Login - Async/Await
1515

@@ -73,7 +73,7 @@ public extension ParseFacebook {
7373
}
7474
}
7575

76-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
76+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
7777
public extension ParseFacebook {
7878
// MARK: Link - Async/Await
7979
/**

Sources/ParseSwift/Authentication/3rd Party/ParseLDAP/ParseLDAP+async.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#if swift(>=5.5) && canImport(_Concurrency)
1010
import Foundation
1111

12-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
12+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1313
public extension ParseLDAP {
1414
// MARK: Login - Async/Await
1515
/**
@@ -48,7 +48,7 @@ public extension ParseLDAP {
4848
}
4949
}
5050

51-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
51+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
5252
public extension ParseLDAP {
5353
// MARK: Link - Async/Await
5454
/**

Sources/ParseSwift/Authentication/3rd Party/ParseTwitter/ParseTwitter+async.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#if swift(>=5.5) && canImport(_Concurrency)
1010
import Foundation
1111

12-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
12+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1313
public extension ParseTwitter {
1414
// MARK: Login - Async/Await
1515

@@ -61,7 +61,7 @@ public extension ParseTwitter {
6161
}
6262
}
6363

64-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
64+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
6565
public extension ParseTwitter {
6666
// MARK: Link - Async/Await
6767

Sources/ParseSwift/Authentication/Internal/ParseAnonymous+async.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#if swift(>=5.5) && canImport(_Concurrency)
1010
import Foundation
1111

12-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
12+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1313
public extension ParseAnonymous {
1414

1515
// MARK: Login - Async/Await
@@ -45,7 +45,7 @@ public extension ParseAnonymous {
4545
}
4646
}
4747

48-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
48+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
4949
public extension ParseAnonymous {
5050

5151
// MARK: Link - Async/Await

Sources/ParseSwift/Authentication/Protocols/ParseAuthentication+async.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#if swift(>=5.5) && canImport(_Concurrency)
1010
import Foundation
1111

12-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
12+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1313
public extension ParseAuthentication {
1414

1515
// MARK: Convenience Implementations - Async/Await
@@ -30,7 +30,7 @@ public extension ParseAuthentication {
3030
}
3131
}
3232

33-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
33+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
3434
public extension ParseUser {
3535

3636
// MARK: 3rd Party Authentication - Login Async/Await

Sources/ParseSwift/LiveQuery/ParseLiveQuery+async.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#if swift(>=5.5) && canImport(_Concurrency) && !os(Linux) && !os(Android)
1010
import Foundation
1111

12-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
12+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1313
extension ParseLiveQuery {
1414
// MARK: Async/Await
1515

Sources/ParseSwift/Objects/ParseInstallation+async.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#if swift(>=5.5) && canImport(_Concurrency)
1010
import Foundation
1111

12-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
12+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1313
public extension ParseInstallation {
1414

1515
// MARK: Fetchable - Async/Await
@@ -70,7 +70,7 @@ public extension ParseInstallation {
7070
}
7171

7272
// MARK: Batch Support - Async/Await
73-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
73+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
7474
public extension Sequence where Element: ParseInstallation {
7575
/**
7676
Fetches a collection of installations *aynchronously* with the current data from the server and sets

Sources/ParseSwift/Objects/ParseObject+async.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#if swift(>=5.5) && canImport(_Concurrency)
1010
import Foundation
1111

12-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
12+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1313
public extension ParseObject {
1414

1515
// MARK: Async/Await
@@ -66,7 +66,7 @@ public extension ParseObject {
6666
}
6767
}
6868

69-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
69+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
7070
public extension Sequence where Element: ParseObject {
7171
// MARK: Batch Support - Async/Await
7272
/**

Sources/ParseSwift/Objects/ParseUser+async.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#if swift(>=5.5) && canImport(_Concurrency)
1010
import Foundation
1111

12-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
12+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1313
public extension ParseUser {
1414

1515
// MARK: Signing Up - Async/Await
@@ -209,7 +209,7 @@ public extension ParseUser {
209209
}
210210

211211
// MARK: Batch Support - Async/Await
212-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
212+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
213213
public extension Sequence where Element: ParseUser {
214214
/**
215215
Fetches a collection of users *aynchronously* with the current data from the server and sets

Sources/ParseSwift/Operations/ParseOperation+async.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#if swift(>=5.5) && canImport(_Concurrency)
1010
import Foundation
1111

12-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
12+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1313
public extension ParseOperation {
1414

1515
// MARK: Savable - Async/Await

Sources/ParseSwift/ParseConstants.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import Foundation
1010

1111
enum ParseConstants {
1212
static let sdk = "swift"
13-
static let version = "2.0.2"
13+
static let version = "2.0.3"
1414
static let fileManagementDirectory = "parse/"
1515
static let fileManagementPrivateDocumentsDirectory = "Private Documents/"
1616
static let fileManagementLibraryDirectory = "Library/"

Sources/ParseSwift/Types/ParseAnalytics+async.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import Foundation
1313
import UIKit
1414
#endif
1515

16-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
16+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1717
public extension ParseAnalytics {
1818

1919
// MARK: Aysnc/Await

Sources/ParseSwift/Types/ParseCloud+async.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#if swift(>=5.5) && canImport(_Concurrency)
1010
import Foundation
1111

12-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
12+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1313
public extension ParseCloud {
1414

1515
// MARK: Functions - Aysnc/Await

Sources/ParseSwift/Types/ParseConfig+async.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#if swift(>=5.5) && canImport(_Concurrency)
1010
import Foundation
1111

12-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
12+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1313
public extension ParseConfig {
1414

1515
// MARK: Fetchable - Async/Await

Sources/ParseSwift/Types/ParseFile+async.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import Foundation
1212
import FoundationNetworking
1313
#endif
1414

15-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
15+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1616
public extension ParseFile {
1717

1818
// MARK: Async/Await

Sources/ParseSwift/Types/ParseHealth+async.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#if swift(>=5.5) && canImport(_Concurrency)
1010
import Foundation
1111

12-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
12+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1313
public extension ParseHealth {
1414

1515
// MARK: Async/Await

Sources/ParseSwift/Types/Query+async.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#if swift(>=5.5) && canImport(_Concurrency)
1010
import Foundation
1111

12-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
12+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1313
public extension Query {
1414

1515
// MARK: Queryable - Async/Await

Tests/ParseSwiftTests/ParseAnanlyticsAsyncTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Foundation
1111
import XCTest
1212
@testable import ParseSwift
1313

14-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
14+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1515
class ParseAnanlyticsAsyncTests: XCTestCase { // swiftlint:disable:this type_body_length
1616
override func setUpWithError() throws {
1717
try super.setUpWithError()

Tests/ParseSwiftTests/ParseAnonymousAsyncTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Foundation
1111
import XCTest
1212
@testable import ParseSwift
1313

14-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
14+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1515
class ParseAnonymousAsyncTests: XCTestCase { // swiftlint:disable:this type_body_length
1616
struct User: ParseUser {
1717

Tests/ParseSwiftTests/ParseAppleAsyncTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Foundation
1111
import XCTest
1212
@testable import ParseSwift
1313

14-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
14+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1515
class ParseAppleAsyncTests: XCTestCase { // swiftlint:disable:this type_body_length
1616
struct User: ParseUser {
1717

Tests/ParseSwiftTests/ParseAuthenticationAsyncTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import XCTest
1212
@testable import ParseSwift
1313
import Combine
1414

15-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
15+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1616
class ParseAuthenticationAsyncTests: XCTestCase { // swiftlint:disable:this type_body_length
1717
struct User: ParseUser {
1818

Tests/ParseSwiftTests/ParseCloudAsyncTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Foundation
1111
import XCTest
1212
@testable import ParseSwift
1313

14-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
14+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1515
class ParseCloudAsyncTests: XCTestCase { // swiftlint:disable:this type_body_length
1616
struct Cloud: ParseCloud {
1717
typealias ReturnType = String? // swiftlint:disable:this nesting

Tests/ParseSwiftTests/ParseConfigAsyncTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Foundation
1111
import XCTest
1212
@testable import ParseSwift
1313

14-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
14+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1515
class ParseConfigAsyncTests: XCTestCase { // swiftlint:disable:this type_body_length
1616
struct Config: ParseConfig {
1717
var welcomeMessage: String?

Tests/ParseSwiftTests/ParseFacebookAsyncTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Foundation
1111
import XCTest
1212
@testable import ParseSwift
1313

14-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
14+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1515
class ParseFacebookAsyncTests: XCTestCase { // swiftlint:disable:this type_body_length
1616
struct User: ParseUser {
1717

Tests/ParseSwiftTests/ParseFileAsyncTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Foundation
1111
import XCTest
1212
@testable import ParseSwift
1313

14-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
14+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1515
class ParseFileAsyncTests: XCTestCase { // swiftlint:disable:this type_body_length
1616
let temporaryDirectory = "\(NSTemporaryDirectory())test/"
1717

Tests/ParseSwiftTests/ParseHealthAsyncTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Foundation
1111
import XCTest
1212
@testable import ParseSwift
1313

14-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
14+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1515
class ParseHealthAsyncTests: XCTestCase { // swiftlint:disable:this type_body_length
1616
override func setUpWithError() throws {
1717
try super.setUpWithError()

Tests/ParseSwiftTests/ParseInstallationAsyncTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Foundation
1111
import XCTest
1212
@testable import ParseSwift
1313

14-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
14+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1515
class ParseInstallationAsyncTests: XCTestCase { // swiftlint:disable:this type_body_length
1616

1717
struct User: ParseUser {

Tests/ParseSwiftTests/ParseLDAPAsyncTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Foundation
1111
import XCTest
1212
@testable import ParseSwift
1313

14-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
14+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1515
class ParseLDAPAsyncTests: XCTestCase { // swiftlint:disable:this type_body_length
1616
struct User: ParseUser {
1717

Tests/ParseSwiftTests/ParseLiveQueryAsyncTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Foundation
1111
import XCTest
1212
@testable import ParseSwift
1313

14-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
14+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1515
class ParseLiveQueryAsyncTests: XCTestCase { // swiftlint:disable:this type_body_length
1616
override func setUpWithError() throws {
1717
try super.setUpWithError()

Tests/ParseSwiftTests/ParseObjectAsyncTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Foundation
1111
import XCTest
1212
@testable import ParseSwift
1313

14-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
14+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1515
class ParseObjectAsyncTests: XCTestCase { // swiftlint:disable:this type_body_length
1616

1717
struct GameScore: ParseObject {

Tests/ParseSwiftTests/ParseOperationAsyncTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import Foundation
1111
import XCTest
1212
@testable import ParseSwift
1313

14-
@available(macOS 12.0, iOS 15.0, macCatalyst 15.0, watchOS 9.0, tvOS 15.0, *)
14+
@available(macOS 12.0, iOS 15.0, watchOS 8.0, tvOS 15.0, *)
1515
class ParseOperationAsyncTests: XCTestCase { // swiftlint:disable:this type_body_length
1616
struct GameScore: ParseObject {
1717
//: Those are required for Object

0 commit comments

Comments
 (0)