fixup comments in Subroutine

This commit is contained in:
Joshua Warner 2014-05-31 21:28:27 -06:00
parent 9ed6a16340
commit ec2e153aa8

View File

@ -774,7 +774,7 @@ class Subroutine {
// Index of this subroutine, in the (unmaterialized) list of subroutines in
// this method.
// Note that in the presence of nested finalls, this could theoretically end
// Note that in the presence of nested finallys, this could theoretically end
// up being greater than the number of jsr instructions (but this will be
// extremely rare - I don't think we've seen this in practice).
const unsigned index;
@ -782,10 +782,6 @@ class Subroutine {
// Subroutine outer to this one (if, for instance, we have nested finallys)
Subroutine* const outer;
// How many levels deep of subroutines we're nested in.
// Note: This should always be len(outer), when treated as a list.
// const unsigned nesting;
// Starting ip in the original bytecode (always < original bytecode size)
const unsigned returnAddress;