Esempio n. 1
0
 public AST_variable_declaration(AST_identifier identifier, AST_type type, AST_expression expression)
 {
     this.identifier = identifier;
     this.type       = type;
     this.expression = expression;
 }
Esempio n. 2
0
 override public void Visit(AST_type type)
 {
     DebugPrint("type: " + type.Kind.ToString());
 }
Esempio n. 3
0
 public AST_variable_declaration(AST_identifier identifier, AST_type type)
 {
     this.identifier = identifier;
     this.type       = type;
 }