aboutsummaryrefslogtreecommitdiffstats
path: root/lib/debugger/src/dbg_ieval.hrl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2011-03-22 08:53:57 +0100
committerBjörn Gustavsson <[email protected]>2011-08-16 08:58:47 +0200
commit704d3240cd05ecc1218547a493fab80f99c8e2fd (patch)
treed6137f80edb7683e6a9f64f50188b7056685ef86 /lib/debugger/src/dbg_ieval.hrl
parent2cbf01d49adda893018a9fbeb76c5e12b57bc3c5 (diff)
downloadotp-704d3240cd05ecc1218547a493fab80f99c8e2fd.tar.gz
otp-704d3240cd05ecc1218547a493fab80f99c8e2fd.tar.bz2
otp-704d3240cd05ecc1218547a493fab80f99c8e2fd.zip
ieval record: Rename the misnamed 'last_call' field to 'top'
The 'last_call' is badly named. What is means is that the next call will leave intepreted code.
Diffstat (limited to 'lib/debugger/src/dbg_ieval.hrl')
-rw-r--r--lib/debugger/src/dbg_ieval.hrl8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/debugger/src/dbg_ieval.hrl b/lib/debugger/src/dbg_ieval.hrl
index a344748f48..ea6189ad02 100644
--- a/lib/debugger/src/dbg_ieval.hrl
+++ b/lib/debugger/src/dbg_ieval.hrl
@@ -21,6 +21,8 @@
module, % MFA which called the currently
function, % interpreted function
arguments, %
- last_call = false % True if current expression is
- }). % the VERY last to be evaluated
- % (ie at all, not only in a clause)
+
+ %% True if the current expression is at the top level
+ %% (i.e. the next call will leave interpreted code).
+ top = false
+ }).