Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix get function opcode traces (#2708)
Fix get function opcode traces (`GetFunction`, `GetGenerator`, etc) ```js function x() { let y = 0; } ``` Before: ``` 000000 0000 GetFunction 0000: 'JSInternedStrRef { utf8: Some("x"), utf16: [120] }' (length: 0) 000006 0001 DefInitVar 0000: 'x' ``` After: ``` 000000 0000 GetFunction 0000: 'x' (length: 0) 000006 0001 DefInitVar 0000: 'x' ```
- Loading branch information