mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Currently this only handles top-level nominal types. We're just trying to emulate what the debugger does when it needs to go from a mangled name to an AST node, so it's okay that the cases handled here are very restricted. We just want to make sure that the debugger is /able/ to do what it needs to do. This does not yet handle nested (non-top-level) values; that will require changes to DeclContext::lookupQualified. Part of rdar://problem/17632175 Swift SVN r21690
5 lines
97 B
Swift
5 lines
97 B
Swift
// Matches declaration in lookup.swift
|
|
private struct PrivateStruct {
|
|
let fromOtherFile: Int
|
|
}
|