v8.h | v8.h | |||
---|---|---|---|---|
skipping to change at line 1333 | skipping to change at line 1333 | |||
public: | public: | |||
V8EXPORT static Local<Value> New(double time); | V8EXPORT static Local<Value> New(double time); | |||
/** | /** | |||
* A specialization of Value::NumberValue that is more efficient | * A specialization of Value::NumberValue that is more efficient | |||
* because we know the structure of this object. | * because we know the structure of this object. | |||
*/ | */ | |||
V8EXPORT double NumberValue() const; | V8EXPORT double NumberValue() const; | |||
static inline Date* Cast(v8::Value* obj); | static inline Date* Cast(v8::Value* obj); | |||
/** | ||||
* Notification that the embedder has changed the time zone, | ||||
* daylight savings time, or other date / time configuration | ||||
* parameters. V8 keeps a cache of various values used for | ||||
* date / time computation. This notification will reset | ||||
* those cached values for the current context so that date / | ||||
* time configuration changes would be reflected in the Date | ||||
* object. | ||||
* | ||||
* This API should not be called more than needed as it will | ||||
* negatively impact the performance of date operations. | ||||
*/ | ||||
V8EXPORT static void DateTimeConfigurationChangeNotification(); | ||||
private: | private: | |||
V8EXPORT static void CheckCast(v8::Value* obj); | V8EXPORT static void CheckCast(v8::Value* obj); | |||
}; | }; | |||
/** | /** | |||
* An instance of the built-in RegExp constructor (ECMA-262, 15.10). | * An instance of the built-in RegExp constructor (ECMA-262, 15.10). | |||
*/ | */ | |||
class RegExp : public Value { | class RegExp : public Value { | |||
public: | public: | |||
/** | /** | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 15 lines changed or added | |||