コード例 #1
0
 public virtual ReturnType VisitSliceTypeExpr(AstSliceTypeExpr type, DataType data         = default) => default;
コード例 #2
0
ファイル: RawAstPrinter.cs プロジェクト: CheezLang/CheezLang
 public override string VisitSliceTypeExpr(AstSliceTypeExpr type, int data = 0)
 {
     return($"[]{type.Target.Accept(this)}");
 }