On Tue, Mar 31, 2009 at 5:24 PM, MJ <[email protected]> wrote: > It outputs a sort of key table that has a bunch of what it looks to be > like errors in JS code. ... > pcre_error: 0x65c72445 <String[31]: PCRE function %0, error > code %1> > not_defined: 0x65c72911 <String[17]: %0 is not defined> ... > instanceof_function_expected: 0x65c72bdd <String[52]: Expecting a > function in instanceof check, but got %0>
This appears to be the internal table of JS-emited error messages. These are the errors users will see when violating certain constraints. e.g. (myobj instanceof 1) might use: > instanceof_function_expected: 0x65c72bdd <String[52]: Expecting a > function in instanceof check, but got %0> -- ----- stephan beal http://wanderinghorse.net/home/stephan/ --~--~---------~--~----~------------~-------~--~----~ v8-users mailing list [email protected] http://groups.google.com/group/v8-users -~----------~----~----~----~------~----~------~--~---
