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