示例#1
0
 public override void VisitExponent(ASTExponent n)
 {
     throw new NotImplementedException();
 }
示例#2
0
文件: ThirdPass.cs 项目: goric/cflat
 public override void VisitExponent(ASTExponent n)
 {
     TypeCheckNumericBinary(n, "Operands for exponentiation must both be numeric.");
 }