1include "../../../../include/lldb/Core/PropertiesBase.td"
2
3let Definition = "symbolfiledwarf" in {
4  def SymLinkPaths: Property<"comp-dir-symlink-paths", "FileSpecList">,
5    Global,
6    DefaultStringValue<"">,
7    Desc<"If the DW_AT_comp_dir matches any of these paths the symbolic links will be resolved at DWARF parse time.">;
8  def IgnoreIndexes: Property<"ignore-file-indexes", "Boolean">,
9    Global,
10    DefaultFalse,
11    Desc<"Ignore indexes present in the object files and always index DWARF manually.">;
12}
13