| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 F(DebugPropertyIndexFromDetails, 1) \ | 227 F(DebugPropertyIndexFromDetails, 1) \ |
| 228 F(DebugInterceptorInfo, 1) \ | 228 F(DebugInterceptorInfo, 1) \ |
| 229 F(DebugNamedInterceptorPropertyNames, 1) \ | 229 F(DebugNamedInterceptorPropertyNames, 1) \ |
| 230 F(DebugIndexedInterceptorElementNames, 1) \ | 230 F(DebugIndexedInterceptorElementNames, 1) \ |
| 231 F(DebugNamedInterceptorPropertyValue, 2) \ | 231 F(DebugNamedInterceptorPropertyValue, 2) \ |
| 232 F(DebugIndexedInterceptorElementValue, 2) \ | 232 F(DebugIndexedInterceptorElementValue, 2) \ |
| 233 F(CheckExecutionState, 1) \ | 233 F(CheckExecutionState, 1) \ |
| 234 F(GetFrameCount, 1) \ | 234 F(GetFrameCount, 1) \ |
| 235 F(GetFrameDetails, 2) \ | 235 F(GetFrameDetails, 2) \ |
| 236 F(GetCFrames, 1) \ | 236 F(GetCFrames, 1) \ |
| 237 F(GetThreadCount, 1) \ |
| 238 F(GetThreadDetails, 2) \ |
| 237 F(GetBreakLocations, 1) \ | 239 F(GetBreakLocations, 1) \ |
| 238 F(SetFunctionBreakPoint, 3) \ | 240 F(SetFunctionBreakPoint, 3) \ |
| 239 F(SetScriptBreakPoint, 3) \ | 241 F(SetScriptBreakPoint, 3) \ |
| 240 F(ClearBreakPoint, 1) \ | 242 F(ClearBreakPoint, 1) \ |
| 241 F(ChangeBreakOnException, 2) \ | 243 F(ChangeBreakOnException, 2) \ |
| 242 F(PrepareStep, 3) \ | 244 F(PrepareStep, 3) \ |
| 243 F(ClearStepping, 0) \ | 245 F(ClearStepping, 0) \ |
| 244 F(DebugEvaluate, 4) \ | 246 F(DebugEvaluate, 4) \ |
| 245 F(DebugEvaluateGlobal, 3) \ | 247 F(DebugEvaluateGlobal, 3) \ |
| 246 F(DebugGetLoadedScripts, 0) \ | 248 F(DebugGetLoadedScripts, 0) \ |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); | 370 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); |
| 369 | 371 |
| 370 // Helper functions used stubs. | 372 // Helper functions used stubs. |
| 371 static void PerformGC(Object* result); | 373 static void PerformGC(Object* result); |
| 372 }; | 374 }; |
| 373 | 375 |
| 374 | 376 |
| 375 } } // namespace v8::internal | 377 } } // namespace v8::internal |
| 376 | 378 |
| 377 #endif // V8_RUNTIME_H_ | 379 #endif // V8_RUNTIME_H_ |
| OLD | NEW |