init()

in SourceKitStressTester/Sources/SwiftCWrapper/SwiftCWrapperTool.swift [169:178]


  init(value: String, fromKey key: String) throws {
    switch value.lowercased() {
    case "true", "1":
      self = true
    case "false", "0":
      self = false
    default:
      throw EnvOptionError.typeMismatch(key: key, value: value, expectedType: Bool.self)
    }
  }