Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
cleanup code
  • Loading branch information
bergmeister committed Aug 17, 2019
commit b6239b9c1bcd837f372bb794633f2535efe39d37
12 changes: 0 additions & 12 deletions Engine/TokenOperations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,6 @@ public class TokenOperations
private readonly Token[] tokens;
private LinkedList<Token> tokensLL;
private readonly Ast ast;
private IEnumerable<Ast> hashtableAsts
{
get
{
if (_hashtableAsts == null)
{
_hashtableAsts = ast.FindAll(oneAst => oneAst is HashtableAst, searchNestedScriptBlocks: true);
}
return _hashtableAsts;
}
}
private IEnumerable<Ast> _hashtableAsts;

public Ast Ast { get { return ast; } }

Expand Down