快速语法错误:表达式列表中的预期表达式

时间:2019-03-29 00:15:46

标签: swift

我已经阅读了其他相关错误,但无法解决我的问题

请帮助我!

public func successor() -> JSONIndex {
        switch self.type {
        case .array:
            return JSONIndex(arrayIndex: (self.arrayIndex! + 1))
        case .dictionary:
            return JSONIndex(dictionaryIndex: <#T##Dictionary corresponding to your index##Dictionary<<#Key: Hashable#>, Any>#>.index(after: self.dictionaryIndex!))
        default:
            return JSONIndex()
        }
    }

.dictionary情况下的代码,Xcode指示存在错误

0 个答案:

没有答案