示例#1
0
 public int VisitBoolTypeDenoter(BoolTypeDenoter ast, Frame frame)
 {
     if (ast.Entity == null)
     {
         ast.Entity = new TypeRepresentation(Machine.BooleanSize);
         Encoder.WriteTableDetails(ast);
     }
     return(Machine.BooleanSize);
 }
 public TypeDenoter VisitBoolTypeDenoter(BoolTypeDenoter ast, Void arg)
 {
     return(StandardEnvironment.BooleanType);
 }