OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_ISOLATE_H_ | 5 #ifndef V8_ISOLATE_H_ |
6 #define V8_ISOLATE_H_ | 6 #define V8_ISOLATE_H_ |
7 | 7 |
8 #include <queue> | 8 #include <queue> |
9 #include <set> | 9 #include <set> |
10 | 10 |
(...skipping 1532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1543 private: | 1543 private: |
1544 static bool ShouldRedirect() { | 1544 static bool ShouldRedirect() { |
1545 return FLAG_redirect_code_traces; | 1545 return FLAG_redirect_code_traces; |
1546 } | 1546 } |
1547 | 1547 |
1548 EmbeddedVector<char, 128> filename_; | 1548 EmbeddedVector<char, 128> filename_; |
1549 FILE* file_; | 1549 FILE* file_; |
1550 int scope_depth_; | 1550 int scope_depth_; |
1551 }; | 1551 }; |
1552 | 1552 |
1553 } } // namespace v8::internal | 1553 } // namespace internal |
| 1554 } // namespace v8 |
1554 | 1555 |
1555 #endif // V8_ISOLATE_H_ | 1556 #endif // V8_ISOLATE_H_ |
OLD | NEW |