Changeset 26808 in webkit for trunk/JavaScriptCore/kjs/nodes.h
- Timestamp:
- Oct 19, 2007, 10:18:23 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes.h
r26689 r26808 815 815 JSValue* evaluate(ExecState*) KJS_FAST_CALL; 816 816 virtual void streamTo(SourceStream&) const KJS_FAST_CALL; 817 void ALWAYS_INLINEprocessDeclaration(ExecState*) KJS_FAST_CALL;817 ALWAYS_INLINE void processDeclaration(ExecState*) KJS_FAST_CALL; 818 818 virtual void getDeclarations(DeclarationStacks&) KJS_FAST_CALL; 819 819 private: … … 1044 1044 int sourceId() KJS_FAST_CALL { return m_sourceId; } 1045 1045 const UString& sourceURL() KJS_FAST_CALL { return m_sourceURL; } 1046 1047 virtual Completion execute(ExecState*) KJS_FAST_CALL; 1046 1048 1047 1049 void addParam(const Identifier& ident) KJS_FAST_CALL; … … 1050 1052 UString paramString() const KJS_FAST_CALL; 1051 1053 Vector<Identifier>& parameters() KJS_FAST_CALL { return m_parameters; } 1052 void processDeclarations(ExecState*) KJS_FAST_CALL;1054 ALWAYS_INLINE void processDeclarations(ExecState*) KJS_FAST_CALL; 1053 1055 private: 1054 1056 UString m_sourceURL; … … 1081 1083 virtual void streamTo(SourceStream&) const KJS_FAST_CALL; 1082 1084 virtual void getDeclarations(DeclarationStacks&) KJS_FAST_CALL; 1083 void ALWAYS_INLINEprocessDeclaration(ExecState*) KJS_FAST_CALL;1085 ALWAYS_INLINE void processDeclaration(ExecState*) KJS_FAST_CALL; 1084 1086 private: 1085 1087 void addParams() KJS_FAST_CALL;
Note:
See TracChangeset
for help on using the changeset viewer.