fake4swift icon indicating copy to clipboard operation
fake4swift copied to clipboard

ignore attributes of function arguments.

Open younata opened this issue 7 years ago • 0 comments

If I have a protocol that has:

func geocode(query: String, callback: @escaping (MKLocalSearchResponse?, Error?) -> (Void)) -> (Void)

I should not see stuff like:

func geocodeArgs(forCall callIndex: Int) -> (String, @escaping (MKLocalSearchResponse?, Error?) -> (Void)) {
        return self.geocodeArgs[callIndex]
    }

in my generated fake

younata avatar Mar 29 '17 18:03 younata