comparison dmd/CompoundStatement.d @ 167:50a6d232176c

rewrite GlobalExpressions, moved DsymbolTable to Global, some cleanup
author korDen
date Thu, 30 Sep 2010 12:13:49 +0400
parents 9e39c7de8438
children af724d3510d7
comparison
equal deleted inserted replaced
166:d8565fbd755c 167:50a6d232176c
69 if (s) 69 if (s)
70 s.toCBuffer(buf, hgs); 70 s.toCBuffer(buf, hgs);
71 } 71 }
72 } 72 }
73 73
74 static int indent = 0; 74 override Statement semantic(Scope sc)
75 static int depth = 0;
76
77 override Statement semantic(Scope sc)
78 { 75 {
79 Statement s; 76 Statement s;
80 77
81 //printf("CompoundStatement.semantic(this = %p, sc = %p)\n", this, sc); 78 //printf("CompoundStatement.semantic(this = %p, sc = %p)\n", this, sc);
82 79