Exemplo n.º 1
0
        public SerializedType VisitPointerType(Core.Pascal.Pointer pointer)
        {
            var dt = pointer.pointee.Accept(this);

            return(new PointerType_v1 {
                DataType = dt, PointerSize = 4
            });
        }
Exemplo n.º 2
0
 public Constant VisitPointerType(Core.Pascal.Pointer pointer)
 {
     throw new NotImplementedException();
 }