Beispiel #1
0
 public MethodInvocation(Id id, FunctionCall functionCall)
 {
     _id = id;
     _functionCall = functionCall;
 }
 public void Visit(Id id)
 {
     _sb.Append(id.Name);
 }
Beispiel #3
0
 public For(Typed typed, Id id, Stmt body)
 {
     _typed = typed;
     _id = id;
     _body = body;
 }
Beispiel #4
0
 public Group(string name, Id id)
 {
     _name = name;
     _id = id;
 }
Beispiel #5
0
 public DotClient(Id clientId, TunMethodCall tunMethodCall)
 {
     ClientId = clientId;
     TunMethodCall = tunMethodCall;
 }
Beispiel #6
0
 public Assignment(Id left, Exp right)
 {
     _id = left;
     _exp = right;
 }
Beispiel #7
0
 public Typed(SmclType smclType, Id id)
 {
     SmclType = smclType;
     _id = id;
 }
Beispiel #8
0
 public TunMethodCall(Id id, TunMethod tunMethod)
 {
     Id = id;
     TunMethod = tunMethod;
 }
 public void Visit(Id id)
 {
     id.SmclType = _env.GetMyTypeFromId(id.Name);
 }