Tom Gallacher
Tom Gallacher
If we restore our constructor to Bear: ``` javascript Bear.prototype = Object.create(Animal.prototype) Bear.prototype.constructor = Bear; ``` then ``` javascript var bear = new Bear() bear.constructor.name // === 'Bear' ``` Then...
`function.name` was just being used for debugging purposes in this case.
At this moment in time I am agreeing with @lukewilde on this one on leaving it in at the moment. We do not know what will be needed in newer...
Yeah, incompatibilities with 0.12 is a pain. @hhamilto https://github.com/thlorenz/v8-perf might be a good resource to get started.
@bardt Thanks for the heads up, its always going to be a uphill struggle with breaking changes in chrome. Which version of node are you using?
@bardt Ok I will have to acquire a machine with chrome 36 on it, the joys of using a chromebook :p Just for my reference this is what the output...
@bardt Interesting, Could you try the v0.1.3 version and see if that works?
Thanks for this, It looks like the samples field is required now to provide timing information within chrome. V8 which is bundled with node v0.10 as far as I remember...
@bardt At this moment in time, not really - I might be able to look at this in a few days. If it is possible to use 0.11v, as I...
Thanks @bardt, looks good at the first glance! I just need to test it and then it should be all good to merge.