Changeset 48905 in webkit for trunk/JavaScriptCore/runtime/Executable.h
- Timestamp:
- Sep 29, 2009, 2:48:52 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Executable.h
r48662 r48905 159 159 class EvalExecutable : public ScriptExecutable { 160 160 public: 161 EvalExecutable(ExecState* exec, const SourceCode& source)162 : ScriptExecutable(exec, source)163 , m_evalCodeBlock(0)164 {165 }166 161 167 162 ~EvalExecutable(); … … 182 177 183 178 private: 179 EvalExecutable(ExecState* exec, const SourceCode& source) 180 : ScriptExecutable(exec, source) 181 , m_evalCodeBlock(0) 182 { 183 } 184 184 EvalCodeBlock* m_evalCodeBlock; 185 185 … … 200 200 class ProgramExecutable : public ScriptExecutable { 201 201 public: 202 ProgramExecutable(ExecState* exec, const SourceCode& source) 203 : ScriptExecutable(exec, source) 204 , m_programCodeBlock(0) 205 { 206 } 207 202 static PassRefPtr<ProgramExecutable> create(ExecState* exec, const SourceCode& source) 203 { 204 return adoptRef(new ProgramExecutable(exec, source)); 205 } 206 208 207 ~ProgramExecutable(); 209 208 … … 224 223 225 224 private: 225 ProgramExecutable(ExecState* exec, const SourceCode& source) 226 : ScriptExecutable(exec, source) 227 , m_programCodeBlock(0) 228 { 229 } 226 230 ProgramCodeBlock* m_programCodeBlock; 227 231
Note:
See TracChangeset
for help on using the changeset viewer.