v8.h | v8.h | |||
---|---|---|---|---|
skipping to change at line 1710 | skipping to change at line 1710 | |||
int argc, | int argc, | |||
Handle<Value> argv[]); | Handle<Value> argv[]); | |||
V8EXPORT void SetName(Handle<String> name); | V8EXPORT void SetName(Handle<String> name); | |||
V8EXPORT Handle<Value> GetName() const; | V8EXPORT Handle<Value> GetName() const; | |||
/** | /** | |||
* Returns zero based line number of function body and | * Returns zero based line number of function body and | |||
* kLineOffsetNotFound if no information available. | * kLineOffsetNotFound if no information available. | |||
*/ | */ | |||
V8EXPORT int GetScriptLineNumber() const; | V8EXPORT int GetScriptLineNumber() const; | |||
/** | ||||
* Returns zero based column number of function body and | ||||
* kLineOffsetNotFound if no information available. | ||||
*/ | ||||
V8EXPORT int GetScriptColumnNumber() const; | ||||
V8EXPORT Handle<Value> GetScriptId() const; | ||||
V8EXPORT ScriptOrigin GetScriptOrigin() const; | V8EXPORT ScriptOrigin GetScriptOrigin() const; | |||
static inline Function* Cast(Value* obj); | static inline Function* Cast(Value* obj); | |||
V8EXPORT static const int kLineOffsetNotFound; | V8EXPORT static const int kLineOffsetNotFound; | |||
private: | private: | |||
V8EXPORT Function(); | V8EXPORT Function(); | |||
V8EXPORT static void CheckCast(Value* obj); | V8EXPORT static void CheckCast(Value* obj); | |||
}; | }; | |||
/** | /** | |||
* An instance of the built-in Date constructor (ECMA-262, 15.9). | * An instance of the built-in Date constructor (ECMA-262, 15.9). | |||
*/ | */ | |||
class Date : public Object { | class Date : public Object { | |||
public: | public: | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 7 lines changed or added | |||