Definition.cs 469 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace EsPy.Python.Jedi
  7. {
  8. public class Definition : BaseDefinition
  9. {
  10. public string desc_with_module = null;
  11. public DefinedNames defined_names = null;
  12. public bool? is_definition = null;
  13. public string Text
  14. {
  15. get
  16. {
  17. return name;
  18. }
  19. }
  20. }
  21. }