(asset)
| 263 | } |
| 264 | |
| 265 | async function parse(asset) { |
| 266 | let buffer = await asset.getBuffer(); |
| 267 | return [asset.id, v8.deserialize(buffer)]; |
| 268 | } |
| 269 | // cache things in pre-visit order so the references exist |
| 270 | const circularSymbol = Symbol('circular'); |
| 271 | function walk(obj, fn) { |