diff --git a/src/System.CommandLine/Parsing/Token.cs b/src/System.CommandLine/Parsing/Token.cs
index 7b656c9886..af015181f1 100644
--- a/src/System.CommandLine/Parsing/Token.cs
+++ b/src/System.CommandLine/Parsing/Token.cs
@@ -46,7 +46,7 @@ internal Token(string? value, TokenType type, Symbol? symbol, int position)
         /// 
         /// The Symbol represented by the token (if any).
         /// 
-        internal Symbol? Symbol { get; }
+        public Symbol? Symbol { get; }
 
         /// 
         public override bool Equals(object? obj) => obj is Token other && Equals(other);