1
1
mirror of https://github.com/github/semantic.git synced 2024-12-24 23:42:31 +03:00

Stub in SES.

This commit is contained in:
Rob Rix 2015-09-16 09:56:15 -04:00
parent b0c396d734
commit 2fdff49711

View File

@ -62,5 +62,9 @@ public enum Diff: CustomDebugStringConvertible, CustomDocConvertible, Equatable
self = Patch(a, b)
}
}
public static func diff<C1: CollectionType, C2: CollectionType where C1.Index : RandomAccessIndexType, C1.Generator.Element == Diff, C2.Index : RandomAccessIndexType, C2.Generator.Element == Diff>(a: C1, _ b: C2) -> [Diff] {
return []
}
}