public BuiltinFunctionSymbol(string name) : base(name)
 {
     Parameters = new List<ParameterDeclaration>();
     ReturnValue = new TupleType();
 }
예제 #2
0
 public void visit(TupleType t)
 {
     throw new NotImplementedException();
 }
 public virtual void visit(TupleType t)
 {
     // Do nothing; leave the implementation to the main class
 }