comparison dmd/AndExp.d @ 109:ceda59b4d255

expression.c changes, now only ddoc should be left
author Trass3r
date Tue, 31 Aug 2010 22:08:52 +0200
parents 2e2a5c3f943a
children e28b18c23469
comparison
equal deleted inserted replaced
108:6da99741178e 109:ceda59b4d255
47 e = this; 47 e = this;
48 } 48 }
49 else 49 else
50 { 50 {
51 typeCombine(sc); 51 typeCombine(sc);
52 if (e1.op != TOK.TOKslice && e2.op != TOK.TOKslice) 52 if (!e1.isArrayOperand())
53 {
54 e1.checkIntegral(); 53 e1.checkIntegral();
54 if (!e2.isArrayOperand())
55 e2.checkIntegral(); 55 e2.checkIntegral();
56 }
57 } 56 }
58 } 57 }
59 return this; 58 return this;
60 } 59 }
61 60