Changeset 29943 in webkit for trunk/JavaScriptCore/kjs/JSVariableObject.h
- Timestamp:
- Feb 2, 2008, 4:20:34 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSVariableObject.h
r29818 r29943 1 1 /* 2 * Copyright (C) 2007 Apple Inc. All rights reserved.2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 41 41 LocalStorage& localStorage() { return d->localStorage; } 42 42 43 void saveSymbolTable(SymbolTable& s) const; 44 void restoreSymbolTable(SymbolTable& s) const; 45 46 void saveLocalStorage(SavedProperties& s) const; 47 void restoreLocalStorage(SavedProperties& s) const; 43 void saveLocalStorage(SavedProperties&) const; 44 void restoreLocalStorage(const SavedProperties&); 48 45 49 46 virtual bool deleteProperty(ExecState*, const Identifier&); … … 58 55 struct JSVariableObjectData { 59 56 JSVariableObjectData() { } 60 61 57 JSVariableObjectData(SymbolTable* s) 62 58 : symbolTable(s) // Subclass owns this pointer. … … 66 62 LocalStorage localStorage; // Storage for variables in the symbol table. 67 63 SymbolTable* symbolTable; // Maps name -> index in localStorage. 68 69 64 }; 70 65 … … 107 102 return true; 108 103 } 109 110 104 return false; 111 105 }
Note:
See TracChangeset
for help on using the changeset viewer.