Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
b3b00 committed Oct 14, 2024
1 parent 430deaa commit 21eb55d
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions src/sly/lexer/LexerPosition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,9 @@ private LexerPosition(int index, int line, int column, int currentIndentation, s
public int Column { get; set; }
public int Index { get; set; }
public int Line { get; set; }

private string _mode;

public string Mode
{
get
{
return _mode;
}
set
{
_mode = value;
}
}

public string Mode { get; set; }

public bool IsPop { get; set; }

public bool IsPush { get; set; }
Expand Down

0 comments on commit 21eb55d

Please sign in to comment.