1. 15 5月, 2013 3 次提交
  2. 14 5月, 2013 1 次提交
  3. 03 5月, 2013 1 次提交
  4. 01 5月, 2013 2 次提交
  5. 30 4月, 2013 2 次提交
  6. 28 4月, 2013 1 次提交
  7. 21 4月, 2013 1 次提交
  8. 20 4月, 2013 1 次提交
  9. 17 4月, 2013 1 次提交
  10. 11 4月, 2013 1 次提交
  11. 10 4月, 2013 1 次提交
  12. 09 4月, 2013 1 次提交
    • N
      Cleanup substitutions and treatment of generics around traits in a number of ways. · 9963bd24
      Niko Matsakis 提交于
      - In a TraitRef, use the self type consistently to refer to the Self type:
        - trait ref in `impl Trait<A,B,C> for S` has a self type of `S`.
        - trait ref in `A:Trait` has the self type `A`
        - trait ref associated with a trait decl has self type `Self`
        - trait ref associated with a supertype has self type `Self`
        - trait ref in an object type `@Trait` has no self type
      
      - Rewrite `each_bound_traits_and_supertraits` to perform
        substitutions as it goes, and thus yield a series of trait refs
        that are always in the same 'namespace' as the type parameter
        bound given as input.  Before, we left this to the caller, but
        this doesn't work because the caller lacks adequare information
        to perform the type substitutions correctly.
      
      - For provided methods, substitute the generics involved in the provided
        method correctly.
      
      - Introduce TypeParameterDef, which tracks the bounds declared on a type
        parameter and brings them together with the def_id and (in the future)
        other information (maybe even the parameter's name!).
      
      - Introduce Subst trait, which helps to cleanup a lot of the
        repetitive code involved with doing type substitution.
      
      - Introduce Repr trait, which makes debug printouts far more convenient.
      
      Fixes #4183.  Needed for #5656.
      9963bd24
  13. 05 4月, 2013 3 次提交
  14. 03 4月, 2013 2 次提交
  15. 27 3月, 2013 4 次提交
  16. 23 3月, 2013 1 次提交
  17. 22 3月, 2013 1 次提交
  18. 21 3月, 2013 1 次提交
    • T
      Make typechecker compositional · db003623
      Tim Chevalier 提交于
      The typechecker previously passed around a boolean return flag to
      indicate whether it saw something with type _|_ (that is, something
      it knows at compile-time will definitely diverge) and also had some
      manual checks for the `ty_err` pseudo-type that represents a previous
      type error. This was because the typing rules implemented by the
      typechecker didn't properly propagate _|_ and ty_err. I fixed it.
      
      This also required changing expected error messages in a few tests,
      as now we're printing out fewer derived errors -- in fact, at this
      point we should print out no derived errors, so report any that
      you see (ones that include "[type error]") as bugs.
      db003623
  19. 20 3月, 2013 2 次提交
  20. 19 3月, 2013 3 次提交
  21. 14 3月, 2013 2 次提交
  22. 12 3月, 2013 1 次提交
  23. 09 3月, 2013 1 次提交
  24. 08 3月, 2013 2 次提交
  25. 07 3月, 2013 1 次提交