stdlib: underscore reflect() and unsafeReflect()

Part of removing the old mirrors.

rdar://21428474

Swift SVN r29826
This commit is contained in:
Dmitri Hrybenko
2015-07-01 00:31:39 +00:00
parent 8d79d9e142
commit 9da16e592e
23 changed files with 116 additions and 104 deletions

View File

@@ -3747,9 +3747,9 @@ internal class ${Self}Mirror<${TypeParametersDecl}> : MirrorType {
_pos.successor()
}
%if Self == 'Set':
return ("[\(_pos._intPos)]", reflect(_mirror[_pos.${Self}Pos]))
return ("[\(_pos._intPos)]", _reflect(_mirror[_pos.${Self}Pos]))
%elif Self == 'Dictionary':
return ("[\(_pos._intPos)]", reflect(_mirror[_pos.${Self}Pos]))
return ("[\(_pos._intPos)]", _reflect(_mirror[_pos.${Self}Pos]))
%end
}