Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Copy exception regions in the copy constructor (#27176)
Browse files Browse the repository at this point in the history
This is used to create MethodIL for the interop stubs. I introduced this field in #27109 but forgot to make a copy here.
  • Loading branch information
MichalStrehovsky authored and jkotas committed Oct 14, 2019
1 parent 4c0b70e commit cacb1a7
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,7 @@ public ILStubMethodIL(ILStubMethodIL methodIL)
_tokens = methodIL._tokens;
_method = methodIL._method;
_debugInformation = methodIL._debugInformation;
_exceptionRegions = methodIL._exceptionRegions;
_maxStack = methodIL._maxStack;
}

Expand Down

0 comments on commit cacb1a7

Please sign in to comment.