Home | History | Annotate | Download | only in issue18676

Lines Matching refs:The

1 // Copyright 2017 The Go Authors. All rights reserved.
3 // license that can be found in the LICENSE file.
5 // The bug happened like this:
6 // 1) The main binary adds an itab for *json.UnsupportedValueError / error
8 // 2) The plugin adds that same itab again. That makes a cycle in the itab
10 // 3) The main binary then asks for the itab for *dynamodbstreamsevt.Event /
12 // The lookup code goes into an infinite loop searching for this itab.
13 // The code is carefully crafted so that the two itabs are both from the
14 // same bucket, and so that the second itab doesn't exist in
15 // the itab hashmap yet (so the entire linked list must be searched).