Changeset 21080 in webkit for trunk/JavaScriptCore/kjs/nodes.cpp
- Timestamp:
- Apr 24, 2007, 7:11:33 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes.cpp
r21032 r21080 185 185 } 186 186 187 static void substitute(UString &string, const UString &substring) KJS_FAST_CALL; 187 188 static void substitute(UString &string, const UString &substring) 188 189 { … … 192 193 } 193 194 195 static inline int currentSourceId(ExecState* exec) KJS_FAST_CALL; 194 196 static inline int currentSourceId(ExecState* exec) 195 197 { … … 197 199 } 198 200 201 static inline const UString& currentSourceURL(ExecState* exec) KJS_FAST_CALL; 199 202 static inline const UString& currentSourceURL(ExecState* exec) 200 203 { … … 746 749 } 747 750 751 static const char *dotExprNotAnObjectString() KJS_FAST_CALL; 748 752 static const char *dotExprNotAnObjectString() 749 753 { … … 751 755 } 752 756 753 static const char *dotExprDoesNotAllowCallsString() 757 static const char *dotExprDoesNotAllowCallsString() KJS_FAST_CALL; 758 static const char *dotExprDoesNotAllowCallsString() 754 759 { 755 760 return "Object %s (result of expression %s.%s) does not allow calls."; … … 969 974 // ------------------------------ TypeOfValueNode ----------------------------------- 970 975 976 static JSValue *typeStringForValue(JSValue *v) KJS_FAST_CALL; 971 977 static JSValue *typeStringForValue(JSValue *v) 972 978 { … … 1362 1368 // ECMA 11.13 1363 1369 1370 static ALWAYS_INLINE JSValue *valueForReadModifyAssignment(ExecState * exec, JSValue *v1, JSValue *v2, Operator oper) KJS_FAST_CALL; 1364 1371 static ALWAYS_INLINE JSValue *valueForReadModifyAssignment(ExecState * exec, JSValue *v1, JSValue *v2, Operator oper) 1365 1372 {
Note:
See TracChangeset
for help on using the changeset viewer.