Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nodejs/node-v0.x-archive
base: a9a53ca05a41
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: 613d76ef6a00
Choose a head ref
  • 5 commits
  • 32 files changed
  • 1 contributor

Commits on Oct 29, 2013

  1. node: don't share state with in_tick/last_threw

    There was no need to share state between C++ and JS for these two
    values. So they have been moved to their respective locations. This will
    help performance only a tiny bit, but it does help code complexity much
    more.
    trevnorris committed Oct 29, 2013
    Copy the full SHA
    4b84e42 View commit details
    Browse the repository at this point in the history
  2. src: use function to get internal pointer

    Remove the NODE_{WRAP,UNWRAP} macros and instead use template functions.
    trevnorris committed Oct 29, 2013
    Copy the full SHA
    93f75a8 View commit details
    Browse the repository at this point in the history
  3. src: don't use WeakObject::Unwrap

    Switch out to use UnwrapObject from util.h.
    trevnorris committed Oct 29, 2013
    Copy the full SHA
    60a3e69 View commit details
    Browse the repository at this point in the history
  4. src: don't use class specific Unwrap methods

    Instead use the template functions in util.h.
    trevnorris committed Oct 29, 2013
    Copy the full SHA
    f2e3be5 View commit details
    Browse the repository at this point in the history
  5. src: shorten Object{Wrap,Unwrap}

    Going back to the original names of Wrap/Unwrap now that most all the
    class members that duplicate the name and functionality have been
    removed.
    trevnorris committed Oct 29, 2013
    Copy the full SHA
    613d76e View commit details
    Browse the repository at this point in the history