File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ const (
51
51
TypeMacro OpType = iota + firstOpIndex
52
52
TypeCall
53
53
TypeDefer
54
- TypePushTransform
55
54
TypeTransform
56
55
TypePopTransform
57
56
TypeInvalidate
@@ -135,7 +134,6 @@ const (
135
134
TypeMacroLen = 1 + 4 + 4
136
135
TypeCallLen = 1 + 4 + 4 + 4 + 4
137
136
TypeDeferLen = 1
138
- TypePushTransformLen = 1 + 4 * 6
139
137
TypeTransformLen = 1 + 1 + 4 * 6
140
138
TypePopTransformLen = 1
141
139
TypeRedrawLen = 1 + 8
@@ -410,7 +408,6 @@ var opProps = [0x100]opProp{
410
408
TypeMacro : {Size : TypeMacroLen , NumRefs : 0 },
411
409
TypeCall : {Size : TypeCallLen , NumRefs : 1 },
412
410
TypeDefer : {Size : TypeDeferLen , NumRefs : 0 },
413
- TypePushTransform : {Size : TypePushTransformLen , NumRefs : 0 },
414
411
TypeTransform : {Size : TypeTransformLen , NumRefs : 0 },
415
412
TypePopTransform : {Size : TypePopTransformLen , NumRefs : 0 },
416
413
TypeInvalidate : {Size : TypeRedrawLen , NumRefs : 0 },
@@ -469,8 +466,6 @@ func (t OpType) String() string {
469
466
return "Call"
470
467
case TypeDefer :
471
468
return "Defer"
472
- case TypePushTransform :
473
- return "PushTransform"
474
469
case TypeTransform :
475
470
return "Transform"
476
471
case TypePopTransform :
You can’t perform that action at this time.
0 commit comments