diff --git a/src/compile.cpp b/src/compile.cpp index c13ddf4e96..6e1353883a 100644 --- a/src/compile.cpp +++ b/src/compile.cpp @@ -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;