File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -547,8 +547,8 @@ type BinOp struct {
547
547
register
548
548
// One of:
549
549
// ADD SUB MUL QUO REM + - * / %
550
- // AND OR XOR SHL SHR AND_NOT & | ^ << >> &~
551
- // EQL LSS GTR NEQ LEQ GEQ == != < <= < >=
550
+ // AND OR XOR SHL SHR AND_NOT & | ^ << >> &^
551
+ // EQL NEQ LSS LEQ GTR GEQ == != < <= < >=
552
552
Op token.Token
553
553
X , Y Value
554
554
}
@@ -788,7 +788,7 @@ type Slice struct {
788
788
type FieldAddr struct {
789
789
register
790
790
X Value // *struct
791
- Field int // index into X.Type().Deref ().(*types.Struct).Fields
791
+ Field int // field is X.Type().Underlying ().(*types.Pointer).Elem().Underlying().(*types. Struct).Field(Field)
792
792
}
793
793
794
794
// The Field instruction yields the Field of struct X.
You can’t perform that action at this time.
0 commit comments