1. 09 6月, 2015 1 次提交
  2. 14 1月, 2015 1 次提交
  3. 06 10月, 2014 1 次提交
    • A
      Refactors the DoLoopBlockSyntax kinds to be more useful to consumers.... · 2aa5c510
      ADGreen 提交于
      Refactors the DoLoopBlockSyntax kinds to be more useful to consumers. Specifically rather than merely identifying whether the loop has a top condition, bottom condition , or no condition, and requiring in the former two cases the caller to inspect the WhileOrUntilClause to determine how to interpret the condition this kind of the block now reflects this and which of the five forms a Do loop may take in VB. This is consistent with the pattern we use for MethodBlocks which have kinds aligned with the kinds of their method statements which are themselves aligned with the method keyword (i.e. Sub or Function). (changeset 1348593)
      2aa5c510
  4. 02 10月, 2014 1 次提交
  5. 18 7月, 2014 1 次提交
  6. 29 5月, 2014 1 次提交
    • A
      Implementation of expression-bodied properties. · d9c684bf
      angocke 提交于
      An expression-bodied property is a property with an expression instead of accessors, i.e. syntax st. a property P written as
      
      ... type P { get { return e; } }
      
      is equivalent to
      
      ... type P => e;
      
      This feature is experimental and keyed on the Experimental LanguageVersion. (changeset 1263330)
      d9c684bf
  7. 05 5月, 2014 1 次提交
  8. 19 3月, 2014 1 次提交