v8.h | v8.h | |||
---|---|---|---|---|
skipping to change at line 1527 | skipping to change at line 1527 | |||
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 function invoked as a constructor for this object. | ||||
* May be the null value. | ||||
*/ | ||||
V8EXPORT Local<Value> GetConstructor(); | ||||
/** | ||||
* Returns the name of the function invoked as a constructor for this obj ect. | * Returns the name of the function invoked as a constructor for this obj ect. | |||
*/ | */ | |||
V8EXPORT Local<String> GetConstructorName(); | 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); | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 6 lines changed or added | |||