Comment.cs 185 B

12345678910
  1. namespace Jint.Parser
  2. {
  3. public class Comment
  4. {
  5. public Location Location;
  6. public int[] Range;
  7. public string Type;
  8. public string Value;
  9. }
  10. }