Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Side by Side Diff: src/macros.py

Issue 734163002: Allow stepping into Promise handlers. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: addressed Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2006-2009 the V8 project authors. All rights reserved. 1 # Copyright 2006-2009 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 const PROPERTY_ATTRIBUTES_SYMBOLIC = 16; 284 const PROPERTY_ATTRIBUTES_SYMBOLIC = 16;
285 const PROPERTY_ATTRIBUTES_PRIVATE_SYMBOL = 32; 285 const PROPERTY_ATTRIBUTES_PRIVATE_SYMBOL = 32;
286 286
287 # Use for keys, values and entries iterators. 287 # Use for keys, values and entries iterators.
288 const ITERATOR_KIND_KEYS = 1; 288 const ITERATOR_KIND_KEYS = 1;
289 const ITERATOR_KIND_VALUES = 2; 289 const ITERATOR_KIND_VALUES = 2;
290 const ITERATOR_KIND_ENTRIES = 3; 290 const ITERATOR_KIND_ENTRIES = 3;
291 291
292 # Check whether debug is active. 292 # Check whether debug is active.
293 const DEBUG_IS_ACTIVE = (%_DebugIsActive() != 0); 293 const DEBUG_IS_ACTIVE = (%_DebugIsActive() != 0);
294 macro DEBUG_IS_STEPPING(function) = (%_DebugIsActive() != 0 && %DebugCallbackSup portsStepping(function));
295 macro DEBUG_PREPARE_STEP_IN_IF_STEPPING(function) = if (DEBUG_IS_STEPPING(functi on)) %DebugPrepareStepInIfStepping(function);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698