예제 #1
0
파일: VariableDef.cs 프로젝트: szh2bg/PTVS
 public LocatedVariableDef(ProjectEntry entry, EncodedLocation location, VariableDef copy)
 {
     Entry            = entry;
     Location         = location;
     _dependencies    = copy._dependencies;
     DeclaringVersion = entry.AnalysisVersion;
 }
예제 #2
0
 public bool AddAssignment(EncodedLocation location, IVersioned entry)
 {
     return(GetDependentItems(entry).AddAssignment(location));
 }
예제 #3
0
 public bool AddReference(EncodedLocation location, IVersioned module)
 {
     return(GetDependentItems(module).AddReference(location));
 }
예제 #4
0
파일: VariableDef.cs 프로젝트: szh2bg/PTVS
 public LocatedVariableDef(ProjectEntry entry, EncodedLocation location)
 {
     Entry            = entry;
     Location         = location;
     DeclaringVersion = entry.AnalysisVersion;
 }
예제 #5
0
 public bool AddAssignment(EncodedLocation location, IProjectEntry entry)
 {
     return(GetDependentItems(entry).AddAssignment(location));
 }
예제 #6
0
 public bool AddReference(EncodedLocation location, IProjectEntry module)
 {
     return(GetDependentItems(module).AddReference(location));
 }