Revert ""I have changed access modifier from Internal to Public . These classes are being refered outside. (#742)" (#747)

This reverts commit a54eff11b6.
This commit is contained in:
Karl Burtram
2018-11-26 13:03:28 -08:00
committed by GitHub
parent a54eff11b6
commit 7a47db8806
23 changed files with 32 additions and 32 deletions

View File

@@ -5,12 +5,12 @@
namespace Microsoft.SqlTools.ServiceLayer.BatchParser
{
public sealed class Token
internal sealed class Token
{
/// <summary>
/// Token class used by the lexer in Batch Parser
/// </summary>
public Token(LexerTokenType tokenType, PositionStruct begin, PositionStruct end, string text, string filename)
internal Token(LexerTokenType tokenType, PositionStruct begin, PositionStruct end, string text, string filename)
{
TokenType = tokenType;
Begin = begin;