1. 23 1月, 2014 1 次提交
  2. 22 1月, 2014 17 次提交
  3. 21 1月, 2014 9 次提交
  4. 20 1月, 2014 5 次提交
  5. 19 1月, 2014 8 次提交
    • M
      extra::json: add documentation and examples · aeb54167
      musitdev 提交于
      aeb54167
    • M
      extra::json: add documentation and examples · 339946cf
      musitdev 提交于
      339946cf
    • M
      Squashed commit of the following: · 1a8a901f
      musitdev 提交于
      commit d00623d60afd460755b749ad5f94935f756f29d2
      Author: musitdev <philippe.delrieu@free.fr>
      Date:   Sat Jan 4 22:31:40 2014 +0100
      
          correct last comments.
      
      commit ef09d6b6d1eebbd7c713c9dad96ed7bfc19dd884
      Author: musitdev <philippe.delrieu@free.fr>
      Date:   Thu Jan 2 20:28:53 2014 +0100
      
          update with the last remarks.
      
      commit 46a028fe1fcdc2a7dcdd78a63001793eff614349
      Author: musitdev <philippe.delrieu@free.fr>
      Date:   Thu Jan 2 10:17:18 2014 +0100
      
          wrap example code in main function.
      
      commit 2472901929bef09786b7aef8ca7c89fbe67d8e3e
      Author: musitdev <philippe.delrieu@free.fr>
      Date:   Mon Dec 30 19:32:46 2013 +0100
      
          Correct code to compile.
      
      commit ed96b2223176781743e984af0e19abcb82150f1f
      Author: musitdev <philippe.delrieu@free.fr>
      Date:   Thu Dec 5 11:32:28 2013 +0100
      
          Correct the comment based on the PR comment.
          Change init call to new to reflect last change.
      
      commit 38b0390c3533a16f822a6df5f90b907bd8ed6edc
      Author: musitdev <philippe.delrieu@free.fr>
      Date:   Wed Dec 4 22:34:25 2013 +0100
      
          correct from_utf8_owned call.
      
      commit 08bed4c5f4fadf93ec457b605a1a1354323d2f5c
      Author: musitdev <philippe.delrieu@free.fr>
      Date:   Wed Dec 4 22:12:41 2013 +0100
      
          correct code '''
      
      commit 02fddcbe2ab37fe842872691105bc4c5cff5abb5
      Author: musitdev <philippe.delrieu@free.fr>
      Date:   Wed Dec 4 13:25:54 2013 +0100
      
          correct typing error
      
      commit b26830b8ddb49f551699e791832ed20640a0fafc
      Author: musitdev <philippe.delrieu@free.fr>
      Date:   Wed Dec 4 13:18:39 2013 +0100
      
          pass make check
      
      commit e87c4f53286122efd0d2364ea45600d4fa4d5744
      Author: musitdev <philippe.delrieu@free.fr>
      Date:   Wed Dec 4 10:47:24 2013 +0100
      
          Add Json example and documentation.
      1a8a901f
    • H
      rustc: check instantiability of fixed length vectors properly. · 6f3c202d
      Huon Wilson 提交于
      Previously, they were treated like ~[] and &[] (which can have length
      0), but fixed length vectors are fixed length, i.e. we know at compile
      time if it's possible to have length zero (which is only for [T, .. 0]).
      
      Fixes #11659.
      6f3c202d
    • S
      Avoid unused variable warning in quote_*! · dac3c53e
      Steven Fackler 提交于
      The provided span isn't used in all cases (namely primitives).
      dac3c53e
    • H
      rustc: remove the explicit count from the lang_item macro. · a68172cd
      Huon Wilson 提交于
      We can use a secondary macro to calculate the count from the information
      we're already having to pass to the lang items macro.
      a68172cd
    • B
      Pass the correct --target flag when type checking pretty-printed code in tests · 2d656d62
      Brian Anderson 提交于
      This makes pretty print tests that have aux crates work correctly on Android.
      Without they generate errors ICEs about incorrect node ids. Not sure why.
      2d656d62
    • H
      syntax: convert ast_map to use a SmallIntMap. · 68517a2c
      Huon Wilson 提交于
      NodeIds are sequential integers starting at zero, so we can achieve some
      memory savings by just storing the items all in a line in a vector.
      
      The occupancy for typical crates seems to be 75-80%, so we're already
      more efficient than a HashMap (maximum occupancy 75%), not even counting
      the extra book-keeping that HashMap does.
      68517a2c