Changeset 2824 in webkit for trunk/JavaScriptCore/kjs/context.h
- Timestamp:
- Nov 22, 2002, 1:04:55 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/context.h
r2821 r2824 47 47 const List *arguments() const { return _arguments; } 48 48 49 void pushScope(const Object &s) ;50 void popScope() ;49 void pushScope(const Object &s) { scope.push(s.imp()); } 50 void popScope() { scope.pop(); } 51 51 LabelStack *seenLabels() { return &ls; } 52 52
Note:
See TracChangeset
for help on using the changeset viewer.