2014-06-23 12:49:16 +04:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Confuser.DynCipher.AST {
|
2014-05-27 15:45:37 +04:00
|
|
|
|
public class ArrayIndexExpression : Expression {
|
|
|
|
|
public Expression Array { get; set; }
|
|
|
|
|
public int Index { get; set; }
|
2014-03-05 20:36:15 +04:00
|
|
|
|
|
2014-05-27 15:45:37 +04:00
|
|
|
|
public override string ToString() {
|
|
|
|
|
return string.Format("{0}[{1}]", Array, Index);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|