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: 88333f7ace00
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: 79988438078f
Choose a head ref
  • 2 commits
  • 4 files changed
  • 1 contributor

Commits on May 16, 2013

  1. src: add node_isolates

    Few primitives weren't being passed node_isolate. Adding them for
    consistency.
    trevnorris committed May 16, 2013
    Copy the full SHA
    999ee45 View commit details
    Browse the repository at this point in the history
  2. fs_event: use cached Persistent syms instead

    Instead of String::New every time, use a Persistent sym. This can be
    accomplished in two ways:
    
    1) Local<String> str = *persistent_str_sym;
    
    2) Handle<String> str = persistent_str_sym;
    
    I've chosen to use the latter method for simplicity's sake.
    
    Other small changes include creating syms on Initialize and removing
    unnecessary Local casting on return values.
    trevnorris committed May 16, 2013
    Copy the full SHA
    7998843 View commit details
    Browse the repository at this point in the history