コード例 #1
0
ファイル: CstDotVisitor.cs プロジェクト: MaxLevs/META_FA
 public override void Apply(CstFuncArg cstFuncArg)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
 public abstract void Apply(CstFuncArg cstFuncArg);
コード例 #3
0
 public BuiltInFunctionArgumentTypeException(string funcName, CstFuncArg arg, string expectedType)
 {
     Message = $"Func[{funcName}]: arg: {arg.Type} must be {expectedType}";
 }