Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/libraries/System.Reflection.Emit/src/System/Reflection/Emi…
…t/TypeBuilderImpl.cs

Co-authored-by: Aaron Robinson <[email protected]>
  • Loading branch information
buyaa-n and AaronRobinsonMSFT authored Jan 11, 2024
commit 9fbe2cfdced0145219e5f278e33b221abfa0bb67
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ internal sealed class TypeBuilderImpl : TypeBuilder
// Only for creating the global type
internal TypeBuilderImpl(ModuleBuilderImpl module)
{
_name = "<Module>";
_name = "<Module>"; // Defined in ECMA-335 II.10.8
_module = module;
_isHiddenGlobalType = true;
_handle = MetadataTokens.TypeDefinitionHandle(1);
Expand Down