| Index: tracing/tracing/model/source_info/source_info.html
|
| diff --git a/tracing/tracing/model/source_info/source_info.html b/tracing/tracing/model/source_info/source_info.html
|
| index 8479e573ad762abf335166920c44d8de4304c410..75aad32d9630505e576a0dc912b184fac0576165 100644
|
| --- a/tracing/tracing/model/source_info/source_info.html
|
| +++ b/tracing/tracing/model/source_info/source_info.html
|
| @@ -26,9 +26,12 @@ tr.exportTo('tr.model.source_info', function() {
|
| },
|
|
|
| toString: function() {
|
| + var str = '';
|
| + if (this.file_)
|
| + str += this.file_;
|
| if (this.line_ > 0)
|
| - return this.file_ + ':' + this.line_;
|
| - return this.file_;
|
| + str += ':' + this.line_;
|
| + return str;
|
| }
|
| };
|
|
|
|
|