@@ -43,6 +43,7 @@ internal static partial class UnicodeProperty
4343 internal static partial bool IsJoinControl(Rune rune);
4444 internal static partial bool IsNoncharacterCodePoint(Rune rune);
4545 internal static partial bool IsDefaultIgnorableCodePoint(Rune rune);
46+ internal static partial bool IsExtendedPictographic(Rune rune);
4647 internal static partial BidiClass GetBidiClass(Rune rune);
4748 internal static partial HangulSyllableType GetHangulSyllableType(Rune rune);
4849 internal static partial CombiningClass GetCombiningClass(Rune rune);
@@ -72,6 +73,7 @@ internal static partial class UnicodeProperty
7273 new EmbeddedAdditionalText ( "DerivedCoreProperties.txt" ) ,
7374 new EmbeddedAdditionalText ( "DerivedJoiningType.txt" ) ,
7475 new EmbeddedAdditionalText ( "EastAsianWidth.txt" ) ,
76+ new EmbeddedAdditionalText ( "emoji-data.txt" ) ,
7577 new EmbeddedAdditionalText ( "HangulSyllableType.txt" ) ,
7678 new EmbeddedAdditionalText ( "LineBreak.txt" ) ,
7779 new EmbeddedAdditionalText ( "PropList.txt" ) ,
@@ -82,7 +84,7 @@ internal static partial class UnicodeProperty
8284
8385 var outputDiagnostics = output . GetDiagnostics ( ) ;
8486 Assert . IsEmpty ( outputDiagnostics , "Diagnostics were created while compiling generated source." ) ;
85- // 9 source files specified above, plus 8 generated files (PropList and DerivedCoreProperties both go to the same file)
87+ // 9 source files specified above, plus 8 generated files (PropList/ DerivedCoreProperties/emoji-data all go to the same file)
8688 Assert . AreEqual ( 17 , output . SyntaxTrees . Count ( ) ) ;
8789
8890 using MemoryStream assemblyStream = new ( ) ;
0 commit comments