IPropertyKeyExpression.cs 218 B

12345678910
  1. namespace Jint.Parser.Ast
  2. {
  3. /// <summary>
  4. /// Reprensents an expression which can be a key of a Property
  5. /// </summary>
  6. public interface IPropertyKeyExpression
  7. {
  8. string GetKey();
  9. }
  10. }