Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed Playground compilation error #350

Merged
merged 1 commit into from
Sep 16, 2024
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
6 changes: 3 additions & 3 deletions Parsing.playground/Contents.swift
Original file line number Diff line number Diff line change
Expand Up @@ -53,20 +53,20 @@ struct Instructions {

// MARK: - Parsers

let dot = ParsePrint(.memberwise(Dot.init)) {
let dot = ParsePrint(input: Substring.self, .memberwise(Dot.init)) {
Digits()
","
Digits()
}

let fold = ParsePrint(.memberwise(Fold.init)) {
let fold = ParsePrint(input: Substring.self, .memberwise(Fold.init)) {
"fold along "
Direction.parser()
"="
Digits()
}

let instructions = ParsePrint(.memberwise(Instructions.init)) {
let instructions = ParsePrint(input: Substring.self, .memberwise(Instructions.init)) {
Many {
dot
} separator: {
Expand Down
22 changes: 20 additions & 2 deletions Parsing.xcworkspace/xcshareddata/swiftpm/Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/pointfreeco/swift-case-paths",
"state" : {
"revision" : "bb436421f57269fbcfe7360735985321585a86e5",
"version" : "0.10.1"
"revision" : "642e6aab8e03e5f992d9c83e38c5be98cfad5078",
"version" : "1.5.5"
}
},
{
Expand All @@ -35,6 +35,24 @@
"revision" : "3303b164430d9a7055ba484c8ead67a52f7b74f6",
"version" : "1.0.0"
}
},
{
"identity" : "swift-syntax",
"kind" : "remoteSourceControl",
"location" : "https://github.com/swiftlang/swift-syntax",
"state" : {
"revision" : "cb53fa1bd3219b0b23ded7dfdd3b2baff266fd25",
"version" : "600.0.0"
}
},
{
"identity" : "xctest-dynamic-overlay",
"kind" : "remoteSourceControl",
"location" : "https://github.com/pointfreeco/xctest-dynamic-overlay",
"state" : {
"revision" : "bc2a151366f2cd0e347274544933bc2acb00c9fe",
"version" : "1.4.0"
}
}
],
"version" : 2
Expand Down