v8.h   v8.h 
skipping to change at line 1512 skipping to change at line 1512
V8EXPORT Local<Object> FindInstanceInPrototypeChain( V8EXPORT Local<Object> FindInstanceInPrototypeChain(
Handle<FunctionTemplate> tmpl); Handle<FunctionTemplate> tmpl);
/** /**
* Call builtin Object.prototype.toString on this object. * Call builtin Object.prototype.toString on this object.
* This is different from Value::ToString() that may call * This is different from Value::ToString() that may call
* user-defined toString function. This one does not. * user-defined toString function. This one does not.
*/ */
V8EXPORT Local<String> ObjectProtoToString(); V8EXPORT Local<String> ObjectProtoToString();
/**
* Returns the name of the function invoked as a constructor for this obj
ect.
*/
V8EXPORT Local<String> GetConstructorName();
/** Gets the number of internal fields for this Object. */ /** Gets the number of internal fields for this Object. */
V8EXPORT int InternalFieldCount(); V8EXPORT int InternalFieldCount();
/** Gets the value in an internal field. */ /** Gets the value in an internal field. */
inline Local<Value> GetInternalField(int index); inline Local<Value> GetInternalField(int index);
/** Sets the value in an internal field. */ /** Sets the value in an internal field. */
V8EXPORT void SetInternalField(int index, Handle<Value> value); V8EXPORT void SetInternalField(int index, Handle<Value> value);
/** Gets a native pointer from an internal field. */ /** Gets a native pointer from an internal field. */
inline void* GetPointerFromInternalField(int index); inline void* GetPointerFromInternalField(int index);
 End of changes. 1 change blocks. 
0 lines changed or deleted 6 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/