OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 StackFrameIterator* iterator) : JavaScriptFrame(iterator) { | 249 StackFrameIterator* iterator) : JavaScriptFrame(iterator) { |
250 } | 250 } |
251 | 251 |
252 | 252 |
253 inline InternalFrame::InternalFrame(StackFrameIterator* iterator) | 253 inline InternalFrame::InternalFrame(StackFrameIterator* iterator) |
254 : StandardFrame(iterator) { | 254 : StandardFrame(iterator) { |
255 } | 255 } |
256 | 256 |
257 | 257 |
258 inline StubFailureTrampolineFrame::StubFailureTrampolineFrame( | 258 inline StubFailureTrampolineFrame::StubFailureTrampolineFrame( |
259 StackFrameIterator* iterator) : InternalFrame(iterator) { | 259 StackFrameIterator* iterator) : StandardFrame(iterator) { |
260 } | 260 } |
261 | 261 |
262 | 262 |
263 inline ConstructFrame::ConstructFrame(StackFrameIterator* iterator) | 263 inline ConstructFrame::ConstructFrame(StackFrameIterator* iterator) |
264 : InternalFrame(iterator) { | 264 : InternalFrame(iterator) { |
265 } | 265 } |
266 | 266 |
267 | 267 |
268 template<typename Iterator> | 268 template<typename Iterator> |
269 inline JavaScriptFrameIteratorTemp<Iterator>::JavaScriptFrameIteratorTemp( | 269 inline JavaScriptFrameIteratorTemp<Iterator>::JavaScriptFrameIteratorTemp( |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 template<typename Iterator> | 329 template<typename Iterator> |
330 void JavaScriptFrameIteratorTemp<Iterator>::Reset() { | 330 void JavaScriptFrameIteratorTemp<Iterator>::Reset() { |
331 iterator_.Reset(); | 331 iterator_.Reset(); |
332 if (!done()) Advance(); | 332 if (!done()) Advance(); |
333 } | 333 } |
334 | 334 |
335 | 335 |
336 } } // namespace v8::internal | 336 } } // namespace v8::internal |
337 | 337 |
338 #endif // V8_FRAMES_INL_H_ | 338 #endif // V8_FRAMES_INL_H_ |
OLD | NEW |