namespace Jint.Parser.Ast { /// <summary> /// Reprensents an expression which can be a key of a Property /// </summary> public interface IPropertyKeyExpression { string GetKey(); } }