File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11** Table of Contents**
2+ - [ 0.1.24-alpha] ( #0124-alpha )
23- [ 0.1.23-alpha] ( #0123-alpha )
34- [ 0.1.22-alpha] ( #0122-alpha )
45- [ 0.1.21-alpha] ( #0121-alpha )
2223- [ 0.1.3-alpha] ( #013-alpha )
2324- [ 0.1.2-alpha] ( #012-alpha )
2425
26+ # 0.1.24-alpha
27+ * Fixed a false positive in RedundantTypeInfo rule where it would incorrectly trigger on operator ` := `
28+
2529# 0.1.23-alpha
2630* Fixed a false positive in RedundantTypeInfo rule
2731
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ module Magic.Analyzer.Rules {
1717 var nextIsType = false ;
1818 var idents : string [ ] = [ ] ;
1919 var types : string [ ] = [ ] ;
20- while ( tokens [ i ] . kind != Frontend . TokenKind . SeparatorRightParanthesis ) {
20+ while ( tokens [ i ] . kind != Frontend . TokenKind . SeparatorRightParanthesis && tokens [ i ] . kind != Frontend . TokenKind . OperatorDeclareAssign ) {
2121 if ( tokens [ i ] . kind == Frontend . TokenKind . Identifier || tokens [ i ] . kind == Frontend . TokenKind . VarArgs ) {
2222 if ( nextIsType ) {
2323 if ( tokens [ i + 1 ] . kind == Frontend . TokenKind . OperatorMultiply ) {
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ var fs = require("fs");
2323
2424module Magic {
2525 export class MagicEntry {
26- private static version = "0.1.23 -alpha" ;
26+ private static version = "0.1.24 -alpha" ;
2727 private arguments : string [ ] ;
2828 private sortByLineNumber = false
2929 constructor ( command : string [ ] ) {
You can’t perform that action at this time.
0 commit comments