Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ gen/

# Swift Package Manager
.build/
Package.resolved
.swiftpm/

# CocoaPods
Expand Down
104 changes: 104 additions & 0 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ let package = Package(
.package(url: "https://github.com/ReactiveCocoa/ReactiveSwift.git", from: "7.1.1"),
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "6.6.0"),
.package(url: "https://github.com/nicklockwood/SwiftFormat", exact: "0.54.0"),
.package(url: "https://github.com/swiftlang/swift-syntax", from: "509.0.0"),
.package(url: "https://github.com/swiftlang/swift-syntax", "509.0.0"..<"601.0.0-prerelease"),
.package(url: "https://github.com/pointfreeco/swift-case-paths", from: "1.1.0"),
.package(url: "https://github.com/pointfreeco/swift-identified-collections", from: "1.0.0"),
.package(url: "https://github.com/pointfreeco/swift-macro-testing", from: "0.4.0"),
Expand Down
86 changes: 86 additions & 0 deletions Samples/Tuist/Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ final class ObservableStateMacroTests: XCTestCase {
#"""
@available(iOS 18, *)
struct State {
var count = 0 {
var count {
@storageRestrictions(initializes: _count)
init(initialValue) {
_count = initialValue
Expand Down Expand Up @@ -82,7 +82,7 @@ final class ObservableStateMacroTests: XCTestCase {
} expansion: {
#"""
struct State {
var count = 0 {
var count {
@storageRestrictions(initializes: _count)
init(initialValue) {
_count = initialValue
Expand Down Expand Up @@ -128,7 +128,7 @@ final class ObservableStateMacroTests: XCTestCase {
} expansion: {
#"""
public struct State {
var count = 0 {
var count {
@storageRestrictions(initializes: _count)
init(initialValue) {
_count = initialValue
Expand Down Expand Up @@ -171,7 +171,7 @@ final class ObservableStateMacroTests: XCTestCase {
} expansion: {
#"""
package struct State {
var count = 0 {
var count {
@storageRestrictions(initializes: _count)
init(initialValue) {
_count = initialValue
Expand Down
Loading