| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 F(DebugPropertyAttributesFromDetails, 1) \ | 281 F(DebugPropertyAttributesFromDetails, 1) \ |
| 282 F(DebugPropertyIndexFromDetails, 1) \ | 282 F(DebugPropertyIndexFromDetails, 1) \ |
| 283 F(DebugInterceptorInfo, 1) \ | 283 F(DebugInterceptorInfo, 1) \ |
| 284 F(DebugNamedInterceptorPropertyNames, 1) \ | 284 F(DebugNamedInterceptorPropertyNames, 1) \ |
| 285 F(DebugIndexedInterceptorElementNames, 1) \ | 285 F(DebugIndexedInterceptorElementNames, 1) \ |
| 286 F(DebugNamedInterceptorPropertyValue, 2) \ | 286 F(DebugNamedInterceptorPropertyValue, 2) \ |
| 287 F(DebugIndexedInterceptorElementValue, 2) \ | 287 F(DebugIndexedInterceptorElementValue, 2) \ |
| 288 F(CheckExecutionState, 1) \ | 288 F(CheckExecutionState, 1) \ |
| 289 F(GetFrameCount, 1) \ | 289 F(GetFrameCount, 1) \ |
| 290 F(GetFrameDetails, 2) \ | 290 F(GetFrameDetails, 2) \ |
| 291 F(GetScopeCount, 2) \ |
| 292 F(GetScopeDetails, 3) \ |
| 293 F(DebugPrintScopes, 0) \ |
| 291 F(GetCFrames, 1) \ | 294 F(GetCFrames, 1) \ |
| 292 F(GetThreadCount, 1) \ | 295 F(GetThreadCount, 1) \ |
| 293 F(GetThreadDetails, 2) \ | 296 F(GetThreadDetails, 2) \ |
| 294 F(GetBreakLocations, 1) \ | 297 F(GetBreakLocations, 1) \ |
| 295 F(SetFunctionBreakPoint, 3) \ | 298 F(SetFunctionBreakPoint, 3) \ |
| 296 F(SetScriptBreakPoint, 3) \ | 299 F(SetScriptBreakPoint, 3) \ |
| 297 F(ClearBreakPoint, 1) \ | 300 F(ClearBreakPoint, 1) \ |
| 298 F(ChangeBreakOnException, 2) \ | 301 F(ChangeBreakOnException, 2) \ |
| 299 F(PrepareStep, 3) \ | 302 F(PrepareStep, 3) \ |
| 300 F(ClearStepping, 0) \ | 303 F(ClearStepping, 0) \ |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 int position); | 400 int position); |
| 398 | 401 |
| 399 // Helper functions used stubs. | 402 // Helper functions used stubs. |
| 400 static void PerformGC(Object* result); | 403 static void PerformGC(Object* result); |
| 401 }; | 404 }; |
| 402 | 405 |
| 403 | 406 |
| 404 } } // namespace v8::internal | 407 } } // namespace v8::internal |
| 405 | 408 |
| 406 #endif // V8_RUNTIME_H_ | 409 #endif // V8_RUNTIME_H_ |
| OLD | NEW |