1. 29 7月, 2016 1 次提交
  2. 26 7月, 2016 3 次提交
  3. 25 7月, 2016 7 次提交
  4. 23 7月, 2016 1 次提交
  5. 21 7月, 2016 1 次提交
  6. 20 7月, 2016 1 次提交
  7. 21 4月, 2015 1 次提交
    • D
      Namespace FindRefs Improvements · 29430847
      David Poeschl 提交于
      - Fixes #496, an error when finding reference on namespaces defined in
      metadata
      - Groups all namespace definitions & references under a single node,
      which itself is non-navigable. Prior to this change, there would be lots
      of top-level nodes for the same namespace with 0 references.
      29430847
  8. 20 3月, 2015 1 次提交
    • D
      Change constructor ref node location in Find Refs · a767f3a7
      David Poeschl 提交于
      Fixes internal issue #1138943.
      
      In the SymbolFinder API, references to constructors are included as references to both the constructor method symbol and the related type symbol. Because reference locations are deduplicated across all results shown in Find References, we have to decide which definition node to use as the parent. Prior to this change the first related definition returned to us by the SymbolFinder won, but this ordering was not guaranteed to be consistent. This change introduces a precedence ordering for definitions returned by the SymbolFinder that currently guarantees that members will be preferred over types.
      
      Additionally, this change removes the requirement that definitions shown in Find References have distinct locations. This allows us to meaningfully separate references between a type and its default constructor which has the same location.
      a767f3a7
  9. 18 3月, 2015 1 次提交
    • C
      Allow NavigableItems to have child items. · 7cf4e3b1
      Cyrus Najmabadi 提交于
      This will be used by TypeScript so it can display FindRefernces result in a
      tree form similar to how C#/VB does it.  i.e. it can show results like:
      
      Decl1
      |--Ref1
      |--Ref2
      Decl2
      |--Ref3
      |--Ref4
      7cf4e3b1
  10. 10 3月, 2015 1 次提交
    • D
      Tweak Find All References display to reduce some noise · 4167a06b
      Dustin Campbell 提交于
      * Display logical path rather than full file path. I.e.
      <ProjectName>\<Folders>\<FileName>
      * Use gray text to indicate definitions that have no references rather
      than definitions defined in metadata.
      * Show "(0 references)" when there aren't any found.
      * Don't fully-qualify definitions.
      4167a06b
  11. 27 2月, 2015 1 次提交
    • D
      Hierarchical Find References · d855c686
      David Poeschl 提交于
      In this initial implementation, find references results are now grouped by the definition that they directly reference.
      
      For symbols defined in metadata, we previously showed the references without showing the definition itself. We now show the metadata definition as well.
      d855c686