diff options
Diffstat (limited to 'lldb/scripts/interface/SBFileSpec.i')
-rw-r--r-- | lldb/scripts/interface/SBFileSpec.i | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/lldb/scripts/interface/SBFileSpec.i b/lldb/scripts/interface/SBFileSpec.i index 1d15454b018..d5cdb7d3c4a 100644 --- a/lldb/scripts/interface/SBFileSpec.i +++ b/lldb/scripts/interface/SBFileSpec.i @@ -27,8 +27,7 @@ For example, the following code gets the line entry from the symbol context when a thread is stopped. It gets the file spec corresponding to the line entry and checks that -the filename and the directory matches what we expect. -") SBFileSpec; +the filename and the directory matches what we expect.") SBFileSpec; class SBFileSpec { public: @@ -65,7 +64,7 @@ public: void SetFilename(const char *filename); - + void SetDirectory(const char *directory); @@ -98,10 +97,10 @@ public: __swig_getmethods__["basename"] = GetFilename if _newclass: basename = property(GetFilename, None, doc='''A read only property that returns the path basename as a python string.''') - + __swig_getmethods__["dirname"] = GetDirectory if _newclass: dirname = property(GetDirectory, None, doc='''A read only property that returns the path directory name as a python string.''') - + __swig_getmethods__["exists"] = Exists if _newclass: exists = property(Exists, None, doc='''A read only property that returns a boolean value that indicates if the file exists.''') %} |