We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fa958a commit 78f2fe4Copy full SHA for 78f2fe4
Sources/Argument.swift
@@ -2,15 +2,15 @@ public enum Argument {
2
case quoted(QuotedString)
3
case verbatim(String)
4
5
- init(quoted string: String) {
+ public init(quoted string: String) {
6
self = .quoted(.init(string))
7
}
8
9
- init(verbatim string: String) {
+ public init(verbatim string: String) {
10
self = .verbatim(string)
11
12
13
- var string: String {
+ public var string: String {
14
switch self {
15
case let .quoted(value):
16
return value.quoted
0 commit comments