stdlib: rename Reflectable.{getMirror() -> _getMirror()}

Start removing the old mirrors.

rdar://21428474

Swift SVN r29823
This commit is contained in:
Dmitri Hrybenko
2015-07-01 00:31:32 +00:00
parent cd9a274c0c
commit 7ee84ed6b3
26 changed files with 36 additions and 37 deletions

View File

@@ -206,7 +206,7 @@ extension String {
}
/// Returns a mirror that reflects `self`.
public func getMirror() -> MirrorType {
public func _getMirror() -> MirrorType {
return _UnicodeScalarViewMirror(self)
}