mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
60 lines
2.1 KiB
Swift
60 lines
2.1 KiB
Swift
//
|
|
// ColonRule+FunctionCall.swift
|
|
// SwiftLint
|
|
//
|
|
// Created by Marcelo Fabri on 09/13/17.
|
|
// Copyright © 2017 Realm. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import SourceKittenFramework
|
|
|
|
extension ColonRule {
|
|
|
|
internal func functionCallColonViolationRanges(in file: File,
|
|
dictionary: [String: SourceKitRepresentable]) -> [NSRange] {
|
|
return dictionary.substructure.flatMap { subDict -> [NSRange] in
|
|
guard let kindString = subDict.kind,
|
|
let kind = KindType(rawValue: kindString) else {
|
|
return []
|
|
}
|
|
return functionCallColonViolationRanges(in: file, dictionary: subDict) +
|
|
functionCallColonViolationRanges(in: file, kind: kind, dictionary: subDict)
|
|
}
|
|
}
|
|
|
|
internal func functionCallColonViolationRanges(in file: File, kind: SwiftExpressionKind,
|
|
dictionary: [String: SourceKitRepresentable]) -> [NSRange] {
|
|
guard kind == .argument,
|
|
let ranges = functionCallColonRanges(dictionary: dictionary) else {
|
|
return []
|
|
}
|
|
|
|
let contents = file.contents.bridge()
|
|
return ranges.filter {
|
|
guard let colon = contents.substringWithByteRange(start: $0.location, length: $0.length) else {
|
|
return false
|
|
}
|
|
|
|
if configuration.flexibleRightSpacing {
|
|
let isCorrect = colon.hasPrefix(": ") || colon.hasPrefix(":\n")
|
|
return !isCorrect
|
|
}
|
|
|
|
return colon != ": " && !colon.hasPrefix(":\n")
|
|
}
|
|
}
|
|
|
|
private func functionCallColonRanges(dictionary: [String: SourceKitRepresentable]) -> [NSRange]? {
|
|
guard let nameOffset = dictionary.nameOffset,
|
|
let nameLength = dictionary.nameLength, nameLength > 0,
|
|
let bodyOffset = dictionary.bodyOffset,
|
|
case let location = nameOffset + nameLength,
|
|
bodyOffset > location else {
|
|
return nil
|
|
}
|
|
|
|
return [NSRange(location: location, length: bodyOffset - location)]
|
|
}
|
|
}
|