(sharedDataBag: Map<string, unknown> | null = null)
| 1258 | } |
| 1259 | |
| 1260 | public chain(sharedDataBag: Map<string, unknown> | null = null) { |
| 1261 | for (const n of this.notes) { |
| 1262 | this.noteValueLookup.set(n.realValue, n); |
| 1263 | n.chain(sharedDataBag); |
| 1264 | } |
| 1265 | } |
| 1266 | } |