Changeset 24532 in webkit for trunk/JavaScriptCore/kjs/nodes.h
- Timestamp:
- Jul 23, 2007, 12:10:35 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes.h
r21080 r24532 35 35 #else 36 36 #define KJS_FAST_CALL 37 #endif 38 39 #if COMPILER(GCC) 40 #define KJS_NO_INLINE __attribute__((noinline)) 41 #else 42 #define KJS_NO_INLINE 37 43 #endif 38 44 … … 784 790 }; 785 791 786 class VarDeclNode 792 class VarDeclNode: public Node { 787 793 public: 788 794 enum Type { Variable, Constant }; … … 792 798 virtual void streamTo(SourceStream&) const KJS_FAST_CALL; 793 799 private: 800 JSValue* handleSlowCase(ExecState*, const ScopeChain&, JSValue*) KJS_FAST_CALL KJS_NO_INLINE; 794 801 Type varType; 795 802 Identifier ident;
Note:
See TracChangeset
for help on using the changeset viewer.