On Mon, Jun 19, 2017 at 7:51 PM, Christian Palmstierna <[email protected]> wrote: > While profiling a piece of code in NodeJS, I got the following as the top > result from --prof-process: > [JavaScript]: > ticks total nonlib name > 892 62.1% 62.1% Handler: symbol("nonexistent_symbol" hash 157aee38) > > What does "nonexistent_symbol" actually mean? Is there any way to get more > details on what code is actually running? I haven't been able to find a > shred of documentation about this. Since it amounts to >60% it would be good > to know what it's up to. > > If it matters, I'm using V8 version 5.5.372.40 (NodeJS version 7.6.0).
It means something in your code looks up object properties that don't exist but without more context it's hard to say what. Can you post the full output? -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
