Skip to content

Commit

Permalink
Удален неиспользуемый метод
Browse files Browse the repository at this point in the history
  • Loading branch information
EvilBeaver committed Oct 4, 2017
1 parent a8876ab commit 8a3d810
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/ScriptEngine/Compiler/Compiler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1589,15 +1589,7 @@ private void BuildLoadVariable(string identifier)
AddCommand(OperationCode.LoadLoc, binding.CodeIndex);
}
}

private void BuildIndexedAccess(string identifier)
{
BuildPushVariable(identifier);
NextToken();
BuildExpression(Token.CloseBracket);
AddCommand(OperationCode.PushIndexed, 0);
}


private void BuildFunctionCall(string identifier, int callLineNumber)
{
bool[] args = PushMethodArgumentsBeforeCall();
Expand Down

0 comments on commit 8a3d810

Please sign in to comment.