| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 using ::v8::base::ConditionVariable; | 45 using ::v8::base::ConditionVariable; |
| 46 using ::v8::base::OS; | 46 using ::v8::base::OS; |
| 47 using ::v8::base::Semaphore; | 47 using ::v8::base::Semaphore; |
| 48 using ::v8::internal::EmbeddedVector; | 48 using ::v8::internal::EmbeddedVector; |
| 49 using ::v8::internal::Object; | 49 using ::v8::internal::Object; |
| 50 using ::v8::internal::Handle; | 50 using ::v8::internal::Handle; |
| 51 using ::v8::internal::Heap; | 51 using ::v8::internal::Heap; |
| 52 using ::v8::internal::JSGlobalProxy; | 52 using ::v8::internal::JSGlobalProxy; |
| 53 using ::v8::internal::Code; | 53 using ::v8::internal::Code; |
| 54 using ::v8::internal::Debug; | 54 using ::v8::internal::Debug; |
| 55 using ::v8::internal::Debugger; | |
| 56 using ::v8::internal::CommandMessage; | 55 using ::v8::internal::CommandMessage; |
| 57 using ::v8::internal::CommandMessageQueue; | 56 using ::v8::internal::CommandMessageQueue; |
| 58 using ::v8::internal::StackFrame; | 57 using ::v8::internal::StackFrame; |
| 59 using ::v8::internal::StepAction; | 58 using ::v8::internal::StepAction; |
| 60 using ::v8::internal::StepIn; // From StepAction enum | 59 using ::v8::internal::StepIn; // From StepAction enum |
| 61 using ::v8::internal::StepNext; // From StepAction enum | 60 using ::v8::internal::StepNext; // From StepAction enum |
| 62 using ::v8::internal::StepOut; // From StepAction enum | 61 using ::v8::internal::StepOut; // From StepAction enum |
| 63 using ::v8::internal::Vector; | 62 using ::v8::internal::Vector; |
| 64 using ::v8::internal::StrLength; | 63 using ::v8::internal::StrLength; |
| 65 | 64 |
| (...skipping 7547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7613 "let y = 2; \n" | 7612 "let y = 2; \n" |
| 7614 "debugger; \n" | 7613 "debugger; \n" |
| 7615 "x * y", | 7614 "x * y", |
| 7616 30); | 7615 30); |
| 7617 ExpectInt32( | 7616 ExpectInt32( |
| 7618 "x = 1; y = 2; \n" | 7617 "x = 1; y = 2; \n" |
| 7619 "debugger;" | 7618 "debugger;" |
| 7620 "x * y", | 7619 "x * y", |
| 7621 30); | 7620 30); |
| 7622 } | 7621 } |
| OLD | NEW |