comparison dmd/InExp.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children d42cd5917df4
comparison
equal deleted inserted replaced
-1:000000000000 0:10317f0c89a5
1 module dmd.InExp;
2
3 import dmd.Expression;
4 import dmd.Identifier;
5 import dmd.Loc;
6 import dmd.Scope;
7 import dmd.IRState;
8 import dmd.BinExp;
9 import dmd.TOK;
10
11 import dmd.backend.elem;
12
13 class InExp : BinExp
14 {
15 this(Loc loc, Expression e1, Expression e2)
16 {
17 assert(false);
18 super(loc, TOK.init, 0, e1, e2);
19 }
20
21 Expression semantic(Scope sc)
22 {
23 assert(false);
24 }
25
26 int isBit()
27 {
28 assert(false);
29 }
30
31 Identifier opId()
32 {
33 assert(false);
34 }
35
36 Identifier opId_r()
37 {
38 assert(false);
39 }
40
41 elem* toElem(IRState* irs)
42 {
43 assert(false);
44 }
45 }
46