//Called when any lexical scope ends private void EndScope() { currentScope = currentScope.Parent != null ? currentScope.Parent : null; if (isDebug) { pdb.EndScope(cw.Offset, Line(lastLocation), Col(lastLocation)); } }
//Called when a lexical scope ends. private void EndScope() { CurrentScope = CurrentScope.Parent != null ? CurrentScope.Parent : null; if (debug) { pdb.EndScope(cw.Offset, lastLine, lastColumn); } }