github
Advanced Search
  • Home
  • Pricing and Signup
  • Explore GitHub
  • Blog
  • Login

dachev / v8

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
  • Pull Request
  • Download Source
    • 3
    • 1
  • Source
  • Commits
  • Network (1)
  • Issues (0)
  • Downloads (0)
  • Wiki (1)
  • Graphs
  • Branch: master

click here to add a description

click here to add a homepage

  • Branches (1)
    • master ✓
  • Tags (0)
Sending Request…
Enable Donations

Pledgie Donations

Once activated, we'll place the following badge in your repository's detail box:
Pledgie_example
This service is courtesy of Pledgie.

Google's V8 virtual machine enhanced with __noSuchMethod__ implementation — Read more

  cancel

http://www.dachev.com

  cancel
  • Private
  • Read-Only
  • HTTP Read-Only

This URL has Read+Write access

Upped to V8 rev#:2780 
dachev (author)
Mon Oct 05 23:21:06 -0700 2009
commit  09ec61899e903b25d5f34eae7a429e335356705c
tree    028aea38af9d870e6ae1c2fe5ab8270b86c2f62b
parent  35ae00d4097eb1623d69fd8d0c6e2f54a59eb0aa
v8 /
name age
history
message
file .DS_Store Loading commit data...
file .gitignore
file AUTHORS
file ChangeLog
file LICENSE
file README
file SConstruct
directory benchmarks/
directory include/
directory samples/
directory src/
directory test/
directory tools/
README
This is a patched V8 version to support __noSuchMethod__. All unit tests pass.

BUILD:
Use scons... Example: scons mode=release library=shared sample=shell

RUN:
./shell
    > var User = {};
    > User.find_all_by_street_and_city('Commonwealth Ave', 'Boston');
    (shell):1: TypeError: Object #<an Object> has no method 'find_all_by_street_and_city'
    User.find_all_by_street_and_city('Commonwealth Ave', 'Boston');
         ^
    > User.__noSuchMethod__ = function(name, args) {print(name);for (var i in args) {print(args[i]);}};
    function (name, args) {print(name);for (var i in args) {print(args[i]);}}
    > User.find_all_by_street_and_city('Commonwealth Ave', 'Boston');
    find_all_by_street_and_city
    Commonwealth Ave
    Boston
Blog | Support | Training | Contact | API | Status | Twitter | Help | Security
© 2010 GitHub Inc. All rights reserved. | Terms of Service | Privacy Policy
Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
Dedicated Server