Mark PackageFactory's glob.include as 'named'
This is a functional no-op, as @SkylarkSignature (as a legacy bug) allows *every* parameter to be specified by keyword, regardless of this field. However, it is confusingly inconsistent with the @SkylarkCallable declaration of this function
RELNOTES: None.
PiperOrigin-RevId: 271162898
diff --git a/src/main/java/com/google/devtools/build/lib/packages/PackageFactory.java b/src/main/java/com/google/devtools/build/lib/packages/PackageFactory.java
index b5ef618..c355dc9 100644
--- a/src/main/java/com/google/devtools/build/lib/packages/PackageFactory.java
+++ b/src/main/java/com/google/devtools/build/lib/packages/PackageFactory.java
@@ -511,6 +511,7 @@
name = "include",
type = SkylarkList.class,
generic1 = String.class,
+ named = true,
doc = "a list of strings specifying patterns of files to include."),
@Param(
name = "exclude",